diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..d8ee9f4
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,60 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
+import { Instagram, Facebook } from "lucide-react";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f543f89..bcd7053 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -34,16 +34,16 @@ export default function AvniBusServicePage() {
{ name: "Services", id: "services" },
{ name: "Routes", id: "routes" },
{ name: "Reviews", id: "reviews" },
- { name: "Contact", id: "contact" },
+ { name: "Contact", href: "/contact" },
]}
brandName="Avni Bus"
- button={{ text: "Book Ticket", href: "#contact" }}
+ button={{ text: "Book Ticket", href: "/contact" }}
/>
-
);
-}
+}
\ No newline at end of file