Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-01-29 15:14:41 +00:00
4 changed files with 108 additions and 10 deletions

View File

@@ -104,7 +104,7 @@ export default function BlogPage() {
{ name: "Shop", id: "/shop" },
{ name: "About", id: "#about" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/contact" }
]}
brandName="Kvitok"
bottomLeftText="Fresh Flowers Daily"
@@ -136,13 +136,13 @@ export default function BlogPage() {
title: "Shop", items: [
{ label: "All Arrangements", href: "/shop" },
{ label: "Collections", href: "/#feature" },
{ label: "Custom Orders", href: "/#contact" }
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Contact Us", href: "/#contact" },
{ label: "Contact Us", href: "/contact" },
{ label: "Testimonials", href: "/#testimonials" }
]
},

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

@@ -0,0 +1,98 @@
"use client"
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="slide-background"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="solid"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{name: "Home", id: "/"},
{name: "Products", id: "#products"},
{name: "Shop", id: "/shop"},
{name: "About", id: "#about"},
{name: "Testimonials", id: "#testimonials"},
{name: "Contact", id: "/contact"}
]}
brandName="Kvitok"
bottomLeftText="Fresh Flowers Daily"
bottomRightText="hello@kvitok.com"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Get in Touch"
description="Have questions about our flowers or services? Reach out to our team. We're here to help and would love to hear from you."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true
},
{
name: "email", type: "email", placeholder: "Your Email", required: true
},
{
name: "phone", type: "tel", placeholder: "Phone Number", required: false
}
]}
textarea={{
name: "message", placeholder: "Tell us about your floral needs or questions...", rows: 5,
required: true
}}
useInvertedBackground="noInvert"
imageSrc="https://img.b2bpic.net/free-photo/flat-lay-beautifully-bloomed-colorful-rose-flowers_23-2149005538.jpg"
imageAlt="Beautiful flower arrangement"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/flower-cake_74190-4879.jpg"
imageAlt="Beautiful flower field"
columns={[
{
title: "Shop", items: [
{ label: "All Arrangements", href: "/shop" },
{ label: "Collections", href: "/#feature" },
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Contact Us", href: "/contact" },
{ label: "Testimonials", href: "/#testimonials" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "/#faq" },
{ label: "Delivery Info", href: "/#faq" },
{ label: "Care Guide", href: "/#faq" }
]
}
]}
logoText="KVITOK"
copyrightText="© 2025 Kvitok Flowers. All rights reserved."
/>
</div>
</ThemeProvider>
);
}

View File

@@ -34,7 +34,7 @@ export default function LandingPage() {
{name: "Shop", id: "/shop"},
{name: "About", id: "about"},
{name: "Testimonials", id: "testimonials"},
{name: "Contact", id: "contact"}
{name: "Contact", id: "/contact"}
]}
brandName="Kvitok"
bottomLeftText="Fresh Flowers Daily"

View File

@@ -24,11 +24,11 @@ export default function ShopPage() {
<NavbarStyleFullscreen
navItems={[
{name: "Home", id: "/"},
{name: "Products", id: "products"},
{name: "Products", id: "#products"},
{name: "Shop", id: "/shop"},
{name: "About", id: "about"},
{name: "Testimonials", id: "testimonials"},
{name: "Contact", id: "contact"}
{name: "About", id: "#about"},
{name: "Testimonials", id: "#testimonials"},
{name: "Contact", id: "/contact"}
]}
brandName="Kvitok"
bottomLeftText="Fresh Flowers Daily"
@@ -85,13 +85,13 @@ export default function ShopPage() {
title: "Shop", items: [
{ label: "All Arrangements", href: "/shop" },
{ label: "Collections", href: "/#feature" },
{ label: "Custom Orders", href: "/#contact" }
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Contact Us", href: "/#contact" },
{ label: "Contact Us", href: "/contact" },
{ label: "Testimonials", href: "/#testimonials" }
]
},