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: "Activate House | Fitness Classes & Wellness Community", description: "Join Activate House for yoga, pilates, sculpt, and spin classes. Expert instructors, supportive community, and holistic wellness designed for transformation.", keywords: "gym, fitness classes, yoga, pilates, sculpt, spin, wellness, fitness studio", metadataBase: new URL("https://activatehouse.com"), alternates: { canonical: "https://activatehouse.com" }, openGraph: { title: "Activate House | Your Wellness Destination", description: "Transform your fitness journey with expert-led classes and a thriving wellness community. Book your 2-week intro offer today.", siteName: "Activate House", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/young-athletic-woman-exercising-strength-gymnastic-rings-cross-training-fitness-center_637285-447.jpg", alt: "Activate House fitness studio" }] }, twitter: { card: "summary_large_image", title: "Activate House | Fitness Classes & Wellness", description: "Expert yoga, pilates, sculpt, and spin classes. Start your transformation with our 2-week intro offer.", images: ["https://img.b2bpic.net/free-photo/young-athletic-woman-exercising-strength-gymnastic-rings-cross-training-fitness-center_637285-447.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}