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 ( + + + +
+ +
+ + +
+ ); +} 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 +} 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 +}