diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..9e9e40d
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,43 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterBase from "@/components/sections/footer/FooterBase";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6252f55..dffc4aa 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -35,7 +35,7 @@ export default function LaunchPadLocalPage() {
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
- button={{ text: "Get Started", href: "/payment" }}
+ button={{ text: "Get Started", href: "/contact" }}
/>
@@ -125,7 +125,7 @@ export default function LaunchPadLocalPage() {
logoText="LaunchPad Local"
copyrightText="© 2026 | LaunchPad Local"
columns={[
- { title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "#" }] },
+ { title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Web Design", href: "#" }, { label: "Local SEO", href: "#" }] },
{ title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] },
]}