3 Commits

Author SHA1 Message Date
c05b4bb764 Update src/app/page.tsx 2026-03-03 10:17:04 +00:00
d982577bdc Update src/app/page.tsx 2026-03-03 10:15:41 +00:00
30181b432b Merge version_1 into main
Merge version_1 into main
2026-03-03 10:01:25 +00:00

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -7,6 +7,7 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Award, Clock, Flower, Gift, Globe, Heart, Leaf, Mail, Sparkles, Star, Truck } from 'lucide-react';
@@ -36,7 +37,6 @@ export default function LandingPage() {
button={{
text: "Order Now", href: "#products"
}}
animateOnLoad={true}
/>
</div>
@@ -185,6 +185,31 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
title="Meet Our Team"
description="The talented florists behind every beautiful arrangement."
members={[
{
id: "1", name: "Maria Gonzalez", role: "Head Florist", description: "Maria brings 15 years of experience in floral design and leads our creative team.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67131.jpg"
},
{
id: "2", name: "James Patterson", role: "Floral Designer", description: "James specializes in modern arrangements and sustainable floral practices.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg"
},
{
id: "3", name: "Emma Wilson", role: "Event Specialist", description: "Emma coordinates our large-scale event florals and custom wedding arrangements.", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"
},
{
id: "4", name: "David Chen", role: "Floral Curator", description: "David sources our premium blooms and ensures quality across all our arrangements.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-black-jacket-happy-short-haired-girl-dark-suit-widely-sincerely-smiles-isolated-background_197531-18508.jpg"
}
]}
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get In Touch"
@@ -214,7 +239,7 @@ export default function LandingPage() {
{
title: "About", items: [
{ label: "Our Story", href: "#about" },
{ label: "Meet Our Florists", href: "#features" },
{ label: "Meet Our Florists", href: "#team" },
{ label: "Blog", href: "#" }
]
},