Add src/app/contact/page.tsx
This commit is contained in:
65
src/app/contact/page.tsx
Normal file
65
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,65 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="floatingGradient"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Our Story", id: "about" },
|
||||
{ name: "Collection", id: "products" },
|
||||
{ name: "Craftsmanship", id: "craft" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
brandName="Casa Habano Reserve"
|
||||
button={{ text: "Shop Now", href: "/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Contact Us"
|
||||
title="Reach Out to Casa Habano Reserve"
|
||||
description="We invite you to connect with us for inquiries, custom orders, or any questions about our exquisite collection. Our team is dedicated to providing an experience as refined as our cigars."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elegant-cigar-box-gold-ring_23-2151113174.jpg"
|
||||
imageAlt="Elegant cigar box with gold ring"
|
||||
mediaPosition="left"
|
||||
inputPlaceholder="Your Email Address"
|
||||
buttonText="Send Message"
|
||||
termsText="By sending a message, you agree to our Terms and Conditions."
|
||||
onSubmit={(email) => console.log(`Contact form submitted with email: ${email}`)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Casa Habano Reserve"
|
||||
columns={[
|
||||
{ title: "Information", items: [{ label: "Our Story", href: "/" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Reserve", items: [{ label: "Collection", href: "/" }, { label: "Membership", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 1902 Casa Habano Reserve. Havana, Cuba."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user