import type { Metadata } from "next"; import { Rubik } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const rubik = Rubik({ variable: "--font-rubik", subsets: ["latin"], }); export const metadata: Metadata = { title: "Layer Practice | Master Precision Technique", description: "Learn structured layer practice techniques through expert-guided instruction. Transform your skills with our comprehensive curriculum and global community.", keywords: "layer practice, technique training, skill development, precision practice, guided learning", metadataBase: new URL('https://layerpractice.com'), alternates: { canonical: 'https://layerpractice.com' }, openGraph: { title: "Layer Practice | Master Precision Technique", description: "Learn structured layer practice techniques through expert-guided instruction.", type: "website", siteName: "Layer Practice", images: [{ url: "https://img.b2bpic.net/free-photo/close-up-hands-preparing-cake_23-2149144133.jpg", alt: "Layer practice technique demonstration" }] }, twitter: { card: "summary_large_image", title: "Layer Practice | Master Precision Technique", description: "Learn structured layer practice techniques through expert-guided instruction.", images: ["https://img.b2bpic.net/free-photo/close-up-hands-preparing-cake_23-2149144133.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}