import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Sweet Haven - Artisanal Candies & Gourmet Sweets", description: "Discover handcrafted confections, gourmet chocolates, and premium sweets at Sweet Haven. Premium ingredients, exceptional taste. Order online today.", keywords: "artisanal candy, gourmet sweets, chocolate shop, handmade candies, premium confections, macarons, toffee, candy delivery", openGraph: { title: "Sweet Haven - Premium Artisanal Sweets", description: "Explore our collection of handcrafted candies and gourmet sweets made with love.", type: "website", siteName: "Sweet Haven", images: [ { url: "http://img.b2bpic.net/free-photo/berries-tart-wooden-board-with-milk-bottle_23-2148161609.jpg", alt: "colorful candy shop display window" } ] }, twitter: { card: "summary_large_image", title: "Sweet Haven - Gourmet Candies", description: "Handcrafted artisanal sweets and premium chocolates.", images: ["http://img.b2bpic.net/free-photo/berries-tart-wooden-board-with-milk-bottle_23-2148161609.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}