import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "JKM Golf Academy | Professional Golf Instruction", description: "Premium golf coaching and instruction for all skill levels. Improve your swing with certified professionals. Book your lesson today.", keywords: "golf lessons, golf coaching, golf instruction, golf academy, professional golfer, swing training", robots: { index: true, follow: true, }, openGraph: { title: "JKM Golf Academy", description: "Elevate your golf game with professional instruction and world-class facilities.", url: "https://jkmgolf.com", siteName: "JKM Golf", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/golf-field_654080-1351.jpg", alt: "JKM Golf Academy Premium Course"}, ], }, twitter: { card: "summary_large_image", title: "JKM Golf Academy", description: "Professional golf instruction for all levels", images: ["http://img.b2bpic.net/free-photo/golf-field_654080-1351.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}