diff --git a/src/App.tsx b/src/App.tsx
index 4c8171c..fbc6d65 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import HomePage from "@/pages/HomePage";
import PlansPage from "@/pages/PlansPage";
import AboutPage from "@/pages/AboutPage";
+import ContactPage from "@/pages/ContactPage";
export default function App() {
return (
} />
} />
} />
+ } />
);
}
diff --git a/src/pages/ContactPage.tsx b/src/pages/ContactPage.tsx
new file mode 100644
index 0000000..2e2c1b9
--- /dev/null
+++ b/src/pages/ContactPage.tsx
@@ -0,0 +1,114 @@
+import React from "react";
+import { routes } from "@/routes";
+import NavbarCentered from "@/components/ui/NavbarCentered";
+import HeroBillboard from "@/components/sections/hero/HeroBillboard";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FaqSimple from "@/components/sections/faq/FaqSimple";
+import ContactCta from "@/components/sections/contact/ContactCta";
+import FooterSimple from "@/components/sections/footer/FooterSimple";
+
+const ContactPage = () => {
+ return (
+
+
({ name: r.label, href: r.path }))}
+ ctaButton={{ text: "Get Started", href: "/plans" }}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
Location
+
Find Us on the Map
+
+ Come visit our headquarters in the heart of San Francisco.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default ContactPage;
\ No newline at end of file
diff --git a/src/routes.ts b/src/routes.ts
index c6ba84f..ee7f4f2 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -8,4 +8,5 @@ export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/plans', label: 'Plans', pageFile: 'PlansPage' },
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
+ { path: '/contact', label: 'Contact', pageFile: 'ContactPage' },
];