Add src/app/contact/page.tsx

This commit is contained in:
2026-03-18 15:58:43 +00:00
parent 67261f34d3
commit 069d2b5101

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

@@ -0,0 +1,100 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Coffee } from 'lucide-react';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSmall"
background="floatingGradient"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="Luxe Coffee"
navItems={[
{ name: "Our Story", id: "about" },
{ name: "Our Blends", id: "products" },
{ name: "Experience", id: "metrics" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Menu", id: "menu" },
{ name: "About Us", id: "about-page" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="Artisanal Coffee Since 2015"
bottomRightText="hello@luxecoffee.com"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Get In Touch"
tagIcon={Coffee}
tagAnimation="slide-up"
title="Reserve Your Luxe Experience"
description="Join us for an unforgettable coffee journey. Reserve a table, inquire about our classes, or simply say hello."
buttons={[
{ text: "Reserve Online", href: "#" },
{ text: "Email Us", href: "mailto:hello@luxecoffee.com" }
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
ariaLabel="Contact and reservation section"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "About", items: [
{ label: "Our Story", href: "/about" },
{ label: "Our Blends", href: "/menu" },
{ label: "Sustainability", href: "#" },
{ label: "Careers", href: "#" }
]
},
{
title: "Experience", items: [
{ label: "Visit Us", href: "#contact" },
{ label: "Brewing Classes", href: "#" },
{ label: "Private Events", href: "#" },
{ label: "Gift Cards", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "Contact", href: "mailto:hello@luxecoffee.com" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Shipping Policy", href: "#" }
]
}
]}
copyrightText="© 2024 Luxe Coffee. All rights reserved. Crafted with passion for coffee lovers."
ariaLabel="Footer section with links and information"
/>
</div>
</ThemeProvider>
);
}