12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Contact Us | iFixKart',
|
|
description:
|
|
'Call, email, or visit iFixKart. Find our support phone, email, and service center address.',
|
|
};
|
|
|
|
export default function ContactLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|