From 6a8cad0cf90b6d6a631e5d917c673276eb300134 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 17:40:41 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 60 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 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..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 -- 2.49.1 From 6c8cd248a1e64f4fdc1e5ab649470f0c4d3c00db Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 17:40:41 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) 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 -- 2.49.1