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: "Serene Retreat | Nature-Based Wellness & Healing Retreats", description: "Transform your wellness journey at our nature-based retreats. Experience yoga, meditation, and holistic healing in peaceful natural settings. Book your retreat today.", keywords: "wellness retreat, yoga retreat, meditation, holistic healing, nature wellness, spa retreat, mindfulness", metadataBase: new URL("https://serene-retreat.com"), alternates: { canonical: "https://serene-retreat.com" }, openGraph: { title: "Serene Retreat | Wellness & Healing Retreats", description: "Reconnect with nature and transform your wellness at our serene retreats. Experience yoga, meditation, and holistic healing.", url: "https://serene-retreat.com", siteName: "Serene Retreat", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/smiling-female-athlete-doing-stretching-exercise-cobra-pose-rocky-beach-sunset-copy-space_637285-5493.jpg", alt: "Serene wellness retreat in nature" } ] }, twitter: { card: "summary_large_image", title: "Serene Retreat | Wellness & Healing Retreats", description: "Reconnect with nature and transform your wellness at our serene retreats.", images: ["https://img.b2bpic.net/free-photo/smiling-female-athlete-doing-stretching-exercise-cobra-pose-rocky-beach-sunset-copy-space_637285-5493.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}