12 lines
380 B
TypeScript
12 lines
380 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Payments | iFixKart',
|
|
description:
|
|
'How to pay on iFixKart: cards, UPI, net banking, wallets, repair advances, refunds, and payment security.',
|
|
};
|
|
|
|
export default function PaymentsLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|