Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-04-08 15:48:54 +00:00
2 changed files with 74 additions and 15 deletions

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

@@ -0,0 +1,70 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="grid"
cardStyle="gradient-mesh"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Flowers", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Liza Flowers"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Flowers Studio Liza Contact: +309012312543 | 123 Botanical Ave, Athens"
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Navigate", items: [
{ label: "Studio", href: "/#about" },
{ label: "Collection", href: "/#products" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
],
},
]}
logoText="Liza Flowers"
copyrightText="© 2025 Liza Flowers Studio"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -37,11 +37,11 @@ export default function LandingPage() {
{
name: "Testimonials", id: "testimonials"},
{
name: "Contact", id: "contact"},
name: "Contact", id: "/contact"},
]}
brandName="Liza Flowers"
button={{
text: "Book Now", href: "#contact"
text: "Book Now", href: "/contact"
}}
/>
</div>
@@ -54,7 +54,7 @@ export default function LandingPage() {
{
text: "View Collection", href: "#products"},
{
text: "Book Consultation", href: "#contact"},
text: "Book Consultation", href: "/contact"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34my1kGeblbsCcwUUCcjBY9WFkg/young-woman-drinking-coffee-1774371711067-7933f7fb.png"
avatars={[
@@ -135,17 +135,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"}}
title="Lets Create Something Beautiful"
description="Interested in custom arrangements for your event or studio needs? Get in touch today."
tag="Get in Touch"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
@@ -156,7 +145,7 @@ export default function LandingPage() {
{
label: "Collection", href: "#products"},
{
label: "Contact", href: "#contact"},
label: "Contact", href: "/contact"},
],
},
{