Update src/app/page.tsx

This commit is contained in:
2026-03-03 10:17:04 +00:00
parent d982577bdc
commit c05b4bb764

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -37,7 +37,6 @@ export default function LandingPage() {
button={{ button={{
text: "Order Now", href: "#products" text: "Order Now", href: "#products"
}} }}
animateOnLoad={true}
/> />
</div> </div>
@@ -190,22 +189,23 @@ export default function LandingPage() {
<TeamCardTwo <TeamCardTwo
title="Meet Our Team" title="Meet Our Team"
description="The talented florists behind every beautiful arrangement." description="The talented florists behind every beautiful arrangement."
team={[ members={[
{ {
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: "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", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.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", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.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", 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" 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" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>