import type { Metadata } from "next"; import { Roboto } from "next/font/google"; import "./globals.css"; const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { title: "Plastilin Yoga Center | Transform Your Life Through Yoga", description: "Join Plastilin Yoga Center for transformative yoga classes designed for all levels. Explore wellness, build strength, and find inner peace with our expert instructors.", keywords: "yoga, classes, wellness, meditation, fitness, mindfulness, yoga center, yoga studio", metadataBase: new URL("https://plastilin-yoga.com"), alternates: { canonical: "https://plastilin-yoga.com" }, openGraph: { title: "Plastilin Yoga Center | Transform Your Life", description: "Join our transformative yoga community and discover wellness for body, mind, and spirit.", url: "https://plastilin-yoga.com", siteName: "Plastilin Yoga Center", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/yoga-beach_1163-3332.jpg", alt: "Yoga practice at sunset" } ] }, twitter: { card: "summary_large_image", title: "Plastilin Yoga Center", description: "Transform your life through authentic yoga practices and community connection.", images: ["https://img.b2bpic.net/free-photo/yoga-beach_1163-3332.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}