Update src/app/page.tsx

This commit is contained in:
2026-03-03 10:15:41 +00:00
parent 30181b432b
commit d982577bdc

View File

@@ -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';
@@ -185,6 +186,30 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
title="Meet Our Team"
description="The talented florists behind every beautiful arrangement."
team={[
{
id: "1", name: "Maria Gonzalez", role: "Head Florist", 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", 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", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg"
},
{
id: "4", name: "David Chen", role: "Floral Curator", 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"
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: "#" }
]
},