diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..58096b4
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,247 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import MediaAbout from '@/components/sections/about/MediaAbout';
+import FeatureBento from '@/components/sections/feature/FeatureBento';
+import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
+import ContactFaq from '@/components/sections/contact/ContactFaq';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
+import { Sparkles, Award, Users, Calendar, MapPin, Zap, Phone, BookOpen, Home, Trophy } from "lucide-react";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
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}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a6f44a1..90f566d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,9 +29,9 @@ export default function LandingPage() {
-
-
-
-