Update src/app/layout.tsx

This commit is contained in:
2026-03-04 22:52:54 +00:00
parent bdf045a14b
commit c5e69a741f

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}