From 1264cb00bdca48e1a77c77fffe371ad7ff1c823f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 00:47:07 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 70 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..1722e9f --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,70 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ +
+

Information

+

Phone: (224) 384-8939

+

Address: 2626 Briar Trl Ste 106, Schaumburg, IL 60173

+

Hours: Mon-Sat 24hrs, Sun 9am-7pm

+

Amenities: ASL Proficiency, Multiple Payment Options (Cash, Credit, Zelle)

+
+ + +
+
+ ); +} \ No newline at end of file