Files
c110f79f-043d-4ba9-82e1-9e0…/src/app/contact/page.tsx

104 lines
4.0 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import Link from 'next/link';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLargeSizeMediumTitles"
background="none"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Arrangements", id: "/arrangements" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }
]}
brandName="Rose"
bottomLeftText="Premium Floral Design"
bottomRightText="hello@rosestudio.com"
/>
</div>
<div id="contact-hero" data-section="contact-hero">
<HeroOverlay
title="Get in Touch with Rose Studio"
description="Ready to create something beautiful? Reach out to us and let's bring your floral vision to life."
tag="We'd Love to Hear From You"
imageSrc="https://img.b2bpic.net/free-photo/bouquet-fresh-roses-glass-vase-close-up_169016-8804.jpg"
imageAlt="Contact Rose Studio"
textPosition="center"
showBlur={true}
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactText
text="Send us a message with your inquiries, special requests, or to schedule a personalized consultation with our design team."
buttons={[
{ text: "Email: hello@rosestudio.com", href: "mailto:hello@rosestudio.com" },
{ text: "Call: (555) 123-ROSE", href: "tel:+15551236673" }
]}
useInvertedBackground="invertDefault"
/>
</div>
<div id="contact-footer" data-section="contact-footer">
<FooterBaseCard
logoText="Rose"
columns={[
{
title: "Collections", items: [
{ label: "Wedding Flowers", href: "/arrangements" },
{ label: "Event Design", href: "/arrangements" },
{ label: "Everyday Arrangements", href: "/arrangements" },
{ label: "Seasonal Specials", href: "/arrangements" }
]
},
{
title: "Services", items: [
{ label: "Custom Design", href: "/services" },
{ label: "Delivery", href: "/services" },
{ label: "Subscriptions", href: "/services" },
{ label: "Corporate Events", href: "/services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Gallery", href: "/gallery" },
{ label: "Blog", href: "/" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Pinterest", href: "https://pinterest.com" },
{ label: "TikTok", href: "https://tiktok.com" }
]
}
]}
copyrightText="© 2025 Rose Flowers Studio. Crafting beauty with passion."
/>
</div>
</ThemeProvider>
);
}