Update src/app/contact/page.tsx

This commit is contained in:
2026-03-29 21:58:00 +00:00
parent ac5361b81d
commit 5bc3fa78a7

View File

@@ -9,21 +9,28 @@ import { Mail } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleApple
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Cart", id: "/cart" }]}
brandName="VELORA"
/>
<ContactFaq
ctaTitle="Get In Touch"
ctaDescription="Our dedicated team is here to assist you with your luxury needs."
ctaButton={{ text: "Email Us" }}
ctaIcon={Mail}
animationType="slide-up"
faqs={[]}
/>
<FooterSimple columns={[]} />
/>
</div>
<div id="faq" data-section="faq">
<ContactFaq
ctaTitle="Get In Touch"
ctaDescription="Our dedicated team is here to assist you with your luxury needs."
ctaButton={{ text: "Email Us" }}
ctaIcon={Mail}
animationType="slide-up"
faqs={[]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple columns={[]} bottomLeftText="© 2024 VELORA" bottomRightText="All Rights Reserved" />
</div>
</ReactLenis>
</ThemeProvider>
);