import type { Metadata } from "next"; import { Cormorant_Garamond } from "next/font/google"; import "./globals.css"; const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant-garamond", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Morning | Premium Tea & Coffee Store", description: "Discover ethically sourced premium teas and specialty coffees from around the world. Every cup tells a story.", keywords: "premium coffee, specialty tea, ethically sourced, artisan roaster, organic tea", metadataBase: new URL("https://morning-store.com"), alternates: { canonical: "https://morning-store.com" }, openGraph: { title: "Morning | Premium Tea & Coffee Store", description: "Discover ethically sourced premium teas and specialty coffees. Handpicked beans and leaves roasted fresh for exceptional flavor.", siteName: "Morning", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/hand-holding-glass-cup-front-sunset_266188-9.jpg", alt: "Morning premium coffee and tea" } ] }, twitter: { card: "summary_large_image", title: "Morning | Premium Tea & Coffee", description: "Ethically sourced, handpicked beverages roasted fresh to order.", images: ["https://img.b2bpic.net/free-photo/hand-holding-glass-cup-front-sunset_266188-9.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}