From f76b71c29b8befc044f74118b89208958d2a8d69 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 05:05:44 +0000 Subject: [PATCH] Add src/app/facilities/page.tsx --- src/app/facilities/page.tsx | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/app/facilities/page.tsx diff --git a/src/app/facilities/page.tsx b/src/app/facilities/page.tsx new file mode 100644 index 0000000..8910389 --- /dev/null +++ b/src/app/facilities/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; + +export default function FacilitiesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file