import type { Metadata } from "next"; import { Source_Serif_4 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceSerif4 = Source_Serif_4({ variable: "--font-source-serif-4", subsets: ["latin"], }); export const metadata: Metadata = { title: "Trels Coffee - Premium Specialty Coffee", description: "Handcrafted specialty coffee made with passion. Explore our single-origin blends, expert brewing, and sustainable sourcing.", keywords: "specialty coffee, premium coffee shop, single origin coffee, espresso, cafe", metadataBase: new URL("https://trelscoffee.com"), alternates: { canonical: "https://trelscoffee.com" }, openGraph: { title: "Trels Coffee - Premium Specialty Coffee", description: "Discover exceptional handcrafted coffee experiences", siteName: "Trels Coffee", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140053029-sd9wbrql.jpg", alt: "Trels Coffee - Premium espresso" } ] }, twitter: { card: "summary_large_image", title: "Trels Coffee - Premium Specialty Coffee", description: "Discover exceptional handcrafted coffee experiences", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140053029-sd9wbrql.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}