import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' import Header from '@/components/Header' import Footer from '@/components/Footer' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'Burmddit - Myanmar AI News & Tutorials', description: 'Daily AI news, tutorials, and tips in Burmese. Stay updated with the latest in artificial intelligence.', keywords: 'AI, Myanmar, Burmese, AI news, AI tutorials, machine learning, ChatGPT', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (