diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 810cd41..cc5308b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Camp Jori | Summer Adventure for Kids", description: "Join Camp Jori for an unforgettable summer of outdoor adventure, friendship, and growth. Register now for 2025 sessions!", keywords: "summer camp, kids camp, outdoor adventure, rock climbing, water sports, archery", openGraph: { - title: "Camp Jori | Summer Adventure Awaits", description: "Experience the ultimate summer camp adventure at Camp Jori. Build confidence, make lifelong friends, and create unforgettable memories.", siteName: "Camp Jori", type: "website"}, - twitter: { - card: "summary_large_image", title: "Camp Jori | Summer Adventure for Kids", description: "Join thousands of campers at Camp Jori. Adventure awaits this summer!"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Camp Jori", description: "Camp Jori - Rhode Island's premier summer camp experience"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}