12 lines
382 B
TypeScript
12 lines
382 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'About Us | iFixKart',
|
|
description:
|
|
'iFixKart helps you buy certified refurbished gadgets, book device repairs, and keep electronics in use longer.',
|
|
};
|
|
|
|
export default function AboutLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|