12 lines
369 B
TypeScript
12 lines
369 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Feedback | iFixKart',
|
|
description:
|
|
'Send iFixKart feedback about orders, repairs, payments, or the website. We read every message.',
|
|
};
|
|
|
|
export default function FeedbackLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|