From 74dbc006d3de2975f31f92db8d95e98111018a2a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 13:32:45 +0000 Subject: [PATCH] Add src/app/locations/page.tsx --- src/app/locations/page.tsx | 66 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/app/locations/page.tsx diff --git a/src/app/locations/page.tsx b/src/app/locations/page.tsx new file mode 100644 index 0000000..11bb41c --- /dev/null +++ b/src/app/locations/page.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +export default function LocationsPage() { + return ( + + + + +
+ +
+
+
+ ); +} \ No newline at end of file