12 lines
381 B
TypeScript
12 lines
381 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Help Center | iFixKart',
|
|
description:
|
|
'Get help with iFixKart orders, repairs, payments, returns, and FAQs. Contact support or browse help topics.',
|
|
};
|
|
|
|
export default function HelpLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|