import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Artisan Baked Goods | Fresh Pastries & Bread Delivered", description: "Discover handcrafted pastries, breads, and treats made with love. Freshly baked daily and delivered to your doorstep. Experience the warmth of artisanal baking.", keywords: ["artisan bakery", "fresh pastries", "homemade bread", "local bakery", "daily delivery"] }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}