import type { Metadata } from "next"; import { DM_Sans } 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"], }); export const metadata: Metadata = { title: "My Day - Premium Artisan Coffee Shop", description: "Experience our handcrafted coffee and cozy atmosphere at My Day coffeeshop. Locally roasted, ethically sourced, artisan quality beverages and pastries.", keywords: "coffee shop, artisan coffee, cappuccino, espresso, pastries, cafe, cozy atmosphere", openGraph: { title: "My Day - Premium Artisan Coffee Shop", description: "Experience our handcrafted coffee and cozy atmosphere at My Day coffeeshop.", siteName: "My Day Coffeeshop", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504475843-rx4nokgi.jpg", alt: "My Day coffeeshop" } ] }, twitter: { card: "summary_large_image", title: "My Day - Premium Artisan Coffee Shop", description: "Experience our handcrafted coffee and cozy atmosphere at My Day coffeeshop.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504475843-rx4nokgi.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}