Add src/app/contact/page.tsx

This commit is contained in:
2026-04-02 18:48:42 +00:00
parent 491f042fcd
commit 694fb576ae

63
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,63 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Mail } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSizeMediumTitles"
background="fluid"
cardStyle="gradient-mesh"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/#menu" },
{ name: "Quality", id: "/#quality" },
{ name: "Offers", id: "/#offers" },
{ name: "Contact", id: "/contact" },
]}
brandName="FlavorHaven"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Contact Us"
title="We'd Love to Hear From You"
description="Have questions or want to make a reservation? Reach out to our team and we'll get back to you promptly."
buttons={[
{ text: "Call Us", href: "tel:+1234567890" },
{ text: "Email Us", href: "mailto:hello@flavorhaven.com" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Our Restaurant", items: [{ label: "About Us", href: "#" }, { label: "Menu", href: "/#menu" }, { label: "Quality Standards", href: "/#quality" }] },
{ title: "Support", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Offer", href: "#" }, { label: "Contact", href: "/contact" }] },
]}
bottomLeftText="© 2024 FlavorHaven. All rights reserved."
bottomRightText="123 Local Lane, City, Country"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}