12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import type { ReactNode } from 'react';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'News & Blog | iFixKart',
|
|
description:
|
|
'Tech news, refurbished buying guides, and phone repair tips from iFixKart.',
|
|
};
|
|
|
|
export default function BlogLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|