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; }