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: 'Terms & Conditions | iFixKart',
|
|
description:
|
|
'Read iFixKart terms for refurbished products, repairs, orders, warranty, and use of the storefront.',
|
|
};
|
|
|
|
export default function TermsLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|