Update src/app/contact/page.tsx

This commit is contained in:
2026-01-15 10:43:11 +00:00
parent db5ebf2dc3
commit 4d4d3885db

View File

@@ -9,26 +9,24 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ContactPage() { export default function ContactPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="soft"
contentWidth="mediumSmall" contentWidth="medium"
sizing="largeSizeMediumTitles" sizing="medium"
background="none" background="none"
cardStyle="solid" cardStyle="solid"
primaryButtonStyle="double-inset" primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="glass"
showBlurBottom={false}
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Kvitka Moya" brandName="Kvitka Moya"
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "Home", id: "/" },
{ name: "Products", id: "products" }, { name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "/faq" },
{ name: "FAQ", id: "faq" }, { name: "Contact", id: "/contact" }
{ name: "Contact", id: "contact" }
]} ]}
/> />
</div> </div>
@@ -49,32 +47,28 @@ export default function ContactPage() {
logoText="Kvitka Moya" logoText="Kvitka Moya"
columns={[ columns={[
{ {
title: "Shop", title: "Shop", items: [
items: [
{ label: "Arrangements", href: "/products" }, { label: "Arrangements", href: "/products" },
{ label: "Seasonal Flowers", href: "/products" }, { label: "Seasonal Flowers", href: "/products" },
{ label: "Custom Orders", href: "/contact" } { label: "Custom Orders", href: "/contact" }
] ]
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Delivery Info", href: "/about" }, { label: "Delivery Info", href: "/about" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "FAQ", href: "/faq" }, { label: "FAQ", href: "/faq" },
{ label: "Contact", href: "/contact" }, { label: "Contact", href: "/contact" },
{ label: "Track Order", href: "#" } { label: "Track Order", href: "#" }
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Newsletter", href: "/contact" } { label: "Newsletter", href: "/contact" }