16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'FAQs | iFixKart',
|
|
description:
|
|
'Find answers about refurbished mobiles, repairs, exchange, accessories, and buyback on iFixKart.',
|
|
};
|
|
|
|
export default function FaqsLayout({
|
|
children,
|
|
}: {
|
|
children: ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|