Initial commit

This commit is contained in:
Nikolay Pecheniev
2026-01-15 12:13:33 +02:00
commit 213b31688f
262 changed files with 50096 additions and 0 deletions

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

@@ -0,0 +1,88 @@
"use client";
import Link from "next/link";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ThemeProvider } from '@/components/ui/ThemeProvider';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="largeSizeMediumTitles"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
showBlurBottom={false}
>
<div id="nav" data-section="nav">
<NavbarStyleMinimal
brandName="Bloom & Petals"
button={{
text: "Shop Now",
href: "/products"
}}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Newsletter"
title="Stay Updated with Fresh Collections"
description="Subscribe to our newsletter for exclusive floral designs, seasonal offers, and arrangement inspiration delivered to your inbox."
useInvertedBackground="noInvert"
imageSrc="https://img.b2bpic.net/free-photo/woman-with-bouquet-white-tulips-uses-smartphone-closeup_169016-50692.jpg"
imageAlt="Beautiful flower arrangement"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Bloom & Petals"
columns={[
{
items: [
{ label: "Shop", href: "/products" },
{ label: "Arrangements", href: "#" },
{ label: "Custom Orders", href: "#" },
{ label: "Subscriptions", href: "#" }
]
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "#" },
{ label: "Story", href: "#" },
{ label: "Blog", href: "#" }
]
},
{
items: [
{ label: "Contact", href: "/contact" },
{ label: "Support", href: "#" },
{ label: "Delivery Info", href: "#" },
{ label: "FAQ", href: "#" }
]
},
{
items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
{ label: "Sitemap", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}