Update src/app/about/page.tsx

This commit is contained in:
2026-01-23 12:39:00 +00:00
parent 293b0f2339
commit 35f046c2ef

View File

@@ -8,6 +8,7 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Handshake, Leaf, Users } from 'lucide-react'; import { Sparkles, Handshake, Leaf, Users } from 'lucide-react';
import Link from 'next/link';
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -33,8 +34,7 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Order Now", text: "Order Now", href: "/shop"
href: "/shop"
}} }}
/> />
</div> </div>
@@ -68,28 +68,16 @@ export default function AboutPage() {
description="Talented florists and designers dedicated to bringing beauty to every arrangement" description="Talented florists and designers dedicated to bringing beauty to every arrangement"
members={[ members={[
{ {
id: "1", id: "1", name: "Isabella Rossi", role: "Founder & Head Florist", imageSrc: "https://img.b2bpic.net/free-photo/caucasion-woman-casual-confident-concept_53876-137678.jpg"
name: "Isabella Rossi",
role: "Founder & Head Florist",
imageSrc: "https://img.b2bpic.net/free-photo/caucasion-woman-casual-confident-concept_53876-137678.jpg"
}, },
{ {
id: "2", id: "2", name: "Marcus Johnson", role: "Senior Floral Designer", imageSrc: "https://img.b2bpic.net/free-photo/positive-blond-girl-shows-tongue-winks-camera-makes-happy-funny-face-stands-against-white-background_176420-46979.jpg"
name: "Marcus Johnson",
role: "Senior Floral Designer",
imageSrc: "https://img.b2bpic.net/free-photo/positive-blond-girl-shows-tongue-winks-camera-makes-happy-funny-face-stands-against-white-background_176420-46979.jpg"
}, },
{ {
id: "3", id: "3", name: "Sofia Mendez", role: "Creative Director", imageSrc: "https://img.b2bpic.net/free-photo/portrait-young-woman_23-2148574874.jpg"
name: "Sofia Mendez",
role: "Creative Director",
imageSrc: "https://img.b2bpic.net/free-photo/portrait-young-woman_23-2148574874.jpg"
}, },
{ {
id: "4", id: "4", name: "James Wilson", role: "Logistics Manager", imageSrc: "https://img.b2bpic.net/free-photo/young-woman-smiling_176474-95672.jpg"
name: "James Wilson",
role: "Logistics Manager",
imageSrc: "https://img.b2bpic.net/free-photo/young-woman-smiling_176474-95672.jpg"
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -106,23 +94,19 @@ export default function AboutPage() {
features={[ features={[
{ {
icon: Sparkles, icon: Sparkles,
title: "Quality First", title: "Quality First", description: "We never compromise on the freshness and beauty of our flowers."
description: "We never compromise on the freshness and beauty of our flowers."
}, },
{ {
icon: Handshake, icon: Handshake,
title: "Customer Care", title: "Customer Care", description: "Your satisfaction is our ultimate goal and we stand behind every arrangement."
description: "Your satisfaction is our ultimate goal and we stand behind every arrangement."
}, },
{ {
icon: Leaf, icon: Leaf,
title: "Sustainability", title: "Sustainability", description: "Committed to eco-friendly practices and ethical sourcing worldwide."
description: "Committed to eco-friendly practices and ethical sourcing worldwide."
}, },
{ {
icon: Users, icon: Users,
title: "Community", title: "Community", description: "Supporting local growers and giving back to our community year-round."
description: "Supporting local growers and giving back to our community year-round."
} }
]} ]}
animationType="slide-up" animationType="slide-up"