Update src/app/about/page.tsx

This commit is contained in:
2026-01-22 16:52:15 +00:00
parent 0e2074acaf
commit 7a9ac82db9

View File

@@ -4,7 +4,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Instagram, Facebook, Pinterest } from 'lucide-react'; import { Instagram, Facebook, Hash } from 'lucide-react';
export default function AboutPage() { export default function AboutPage() {
return ( return (
@@ -31,8 +31,7 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Book Now", text: "Book Now", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -54,25 +53,16 @@ export default function AboutPage() {
description="The principles that guide every arrangement we create and every relationship we build" description="The principles that guide every arrangement we create and every relationship we build"
features={[ features={[
{ {
id: "1", id: "1", title: "Craftsmanship Excellence", tags: ["Quality", "Attention to Detail"],
title: "Craftsmanship Excellence", imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg", imageAlt: "Florist crafting arrangement"
tags: ["Quality", "Attention to Detail"],
imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg",
imageAlt: "Florist crafting arrangement"
}, },
{ {
id: "2", id: "2", title: "Sustainable Practices", tags: ["Eco-Friendly", "Local Sourcing"],
title: "Sustainable Practices", imageSrc: "https://img.b2bpic.net/free-photo/vase-flower_74190-1525.jpg", imageAlt: "Sustainable flower arrangement"
tags: ["Eco-Friendly", "Local Sourcing"],
imageSrc: "https://img.b2bpic.net/free-photo/vase-flower_74190-1525.jpg",
imageAlt: "Sustainable flower arrangement"
}, },
{ {
id: "3", id: "3", title: "Personal Touch", tags: ["Custom Design", "Client-Focused"],
title: "Personal Touch", imageSrc: "https://img.b2bpic.net/free-photo/blooming-flowers-table-garden_1304-4038.jpg", imageAlt: "Personalized floral design"
tags: ["Custom Design", "Client-Focused"],
imageSrc: "https://img.b2bpic.net/free-photo/blooming-flowers-table-garden_1304-4038.jpg",
imageAlt: "Personalized floral design"
} }
]} ]}
animationType="slide-up" animationType="slide-up"
@@ -99,7 +89,7 @@ export default function AboutPage() {
socialLinks={[ socialLinks={[
{ icon: Instagram, href: "https://instagram.com/jasminflowers", ariaLabel: "Instagram" }, { icon: Instagram, href: "https://instagram.com/jasminflowers", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://facebook.com/jasminflowers", ariaLabel: "Facebook" }, { icon: Facebook, href: "https://facebook.com/jasminflowers", ariaLabel: "Facebook" },
{ icon: Pinterest, href: "https://pinterest.com/jasminflowers", ariaLabel: "Pinterest" } { icon: Hash, href: "https://pinterest.com/jasminflowers", ariaLabel: "Pinterest" }
]} ]}
/> />
</div> </div>