Add src/app/contact/page.tsx

This commit is contained in:
2026-05-28 16:52:12 +00:00
parent cef3c826a1
commit 6a5cb74f6b

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

@@ -0,0 +1,87 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import ContactText from '@/components/sections/contact/ContactText';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="noise"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Products", id: "#products" },
{ name: "Education", id: "#education" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="The Vegan Marie"
/>
</div>
<div id="contact-page-section" data-section="contact-page-section">
<ContactText
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
text="Have questions or need personalized guidance on your path to natural healing? Reach out to our herbal experts. Call us at 786-308-9785 or email us at theveganmarie@gmail.com."
buttons={[
{ text: "Call Us Now", href: "tel:7863089785" },
{ text: "Email Us", href: "mailto:theveganmarie@gmail.com" }
]}
animationType="entrance-slide"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="The Vegan Marie"
columns={[
{
title: "Shop", items: [
{ label: "Herbal Teas", href: "#products" },
{ label: "Herbal Powders", href: "#products" },
{ label: "Sea Moss Blends", href: "#products" },
{ label: "Remedies & Roots", href: "#products" },
],
},
{
title: "Learn", items: [
{ label: "Our Story", href: "/about" },
{ label: "Herbal Benefits", href: "#features" },
{ label: "Wellness Education", href: "#education" },
{ label: "FAQ", href: "#faq" },
],
},
{
title: "Connect", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Shipping & Returns", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}
copyrightText="© 2024 The Vegan Marie. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}