From 2cb2a753932e36bfa45dc7134cabd42d47328f9b Mon Sep 17 00:00:00 2001 From: development Date: Fri, 30 Jan 2026 10:05:38 +0000 Subject: [PATCH 1/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 92 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 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..66ebe06 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,92 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { MapPin, Instagram, Facebook } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +} From e72b1792820713b8dc7fa6a3957f0c1ae24383c6 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 30 Jan 2026 10:05:39 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fe8dd77..87c9253 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1263,4 +1263,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From 7e10435fc685a2deabf726dff8bb86d628397460 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 30 Jan 2026 10:05:40 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 41 +++++------------------------------------ 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a0d6abe..95c41da 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,7 +36,7 @@ export default function LandingPage() { { name: "Contact", id: "contact" } ]} button={{ - text: "Reserve Table", href: "contact" + text: "Reserve Table", href: "/contact" }} brandName="Hot" /> @@ -48,7 +48,7 @@ export default function LandingPage() { description="Premium hookah lounge experience with handcrafted flavors and luxurious ambiance" buttons={[ { text: "Explore Menu", href: "products" }, - { text: "Reserve Now", href: "contact" } + { text: "Reserve Now", href: "/contact" } ]} slides={[ { @@ -78,7 +78,7 @@ export default function LandingPage() { ]} buttons={[ { text: "Learn Our Story", href: "#" }, - { text: "Visit Us Today", href: "contact" } + { text: "Visit Us Today", href: "/contact" } ]} useInvertedBackground="noInvert" /> @@ -197,37 +197,6 @@ export default function LandingPage() { /> -
- -
- ); -} \ No newline at end of file +}