import { Logo } from '@/components/Logo'; import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; const geistSans = localFont({ src: "./fonts/GeistVF.woff", variable: "--font-geist-sans", weight: "100 900", }); const geistMono = localFont({ src: "./fonts/GeistMonoVF.woff", variable: "--font-geist-mono", weight: "100 900", }); export const metadata: Metadata = { title: "Warisan Nusantara | Ragam Warisan Budaya Indonesia", description: "Jelajahi keberagaman warisan budaya Indonesia, dari seni tradisional, kuliner khas, hingga adat istiadat yang memperkaya Nusantara.", keywords: "budaya indonesia, warisan budaya, seni tradisional, kuliner indonesia, adat istiadat", icons: { icon: [ { url: 'data:image/svg+xml;base64,' + btoa(` `), sizes: 'any', type: 'image/svg+xml' } ] }, openGraph: { title: "Warisan Nusantara", description: "Menjelajahi Ragam Warisan Budaya Indonesia", locale: "id_ID", type: "website", images: [ { url: '/og-image.png', width: 1200, height: 630, alt: 'Warisan Nusantara' } ] }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }