12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Privacy Policy | iFixKart',
|
|
description:
|
|
'How iFixKart collects, uses, and protects your personal information when you shop or book a repair.',
|
|
};
|
|
|
|
export default function PrivacyLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|