import type { Metadata } from "next"; import "./globals.css"; import Header from "@/components/Header"; import Footer from "@/components/Footer"; export const metadata: Metadata = { title: "Cooking - Recipe Collection", description: "A content-first recipe site with delicious recipes and cooking tips", keywords: ["recipes", "cooking", "food", "kitchen"], authors: [{ name: "Cooking" }], openGraph: { type: "website", locale: "en_US", url: "https://cooking.example.com", siteName: "Cooking", title: "Cooking - Recipe Collection", description: "A content-first recipe site with delicious recipes and cooking tips", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (