Compare commits

...

1 Commits

Author SHA1 Message Date
c95122a562 Update src/app/page.tsx 2025-12-28 10:08:32 +00:00

View File

@@ -8,7 +8,7 @@ import ProductCardFive from '@/components/sections/product/ProductCardFive';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm'; import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
import FooterSocial from '@/components/sections/footer/FooterSocial'; import FooterSocial from '@/components/sections/footer/FooterSocial';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock } from "lucide-react"; import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -112,7 +112,7 @@ export default function LandingPage() {
</div> </div>
<div id="locations" data-section="locations"> <div id="locations" data-section="locations">
<MetricCardOne <MetricCardSeven
title="Our Bakery Locations" title="Our Bakery Locations"
description="Visit one of our fresh bakeries in your neighborhood. Open daily for your favorite treats." description="Visit one of our fresh bakeries in your neighborhood. Open daily for your favorite treats."
tag="Find Us" tag="Find Us"
@@ -124,31 +124,27 @@ export default function LandingPage() {
metrics={[ metrics={[
{ {
id: "1", id: "1",
value: "Downtown", value: "123 Bread St",
title: "Main Store", title: "Downtown Main Store",
description: "123 Bread Street, City Center. 6am-8pm daily. (555) 123-4567", items: ["6am - 8pm Daily", "Phone: (555) 123-4567", "Prime Location"]
icon: MapPin
}, },
{ {
id: "2", id: "2",
value: "Riverside", value: "456 Pastry Ln",
title: "North Branch", title: "Riverside North Branch",
description: "456 Pastry Lane, Riverside. 7am-7pm daily. (555) 234-5678", items: ["7am - 7pm Daily", "Phone: (555) 234-5678", "Spacious Seating"]
icon: Clock
}, },
{ {
id: "3", id: "3",
value: "Uptown", value: "789 Croissant Ave",
title: "Premium Location", title: "Uptown Premium Location",
description: "789 Croissant Ave, Uptown. 6:30am-9pm daily. (555) 345-6789", items: ["6:30am - 9pm Daily", "Phone: (555) 345-6789", "Extended Hours"]
icon: Phone
}, },
{ {
id: "4", id: "4",
value: "West End", value: "321 Sourdough St",
title: "Community Hub", title: "West End Community Hub",
description: "321 Sourdough St, West End. 7am-6pm daily. (555) 456-7890", items: ["7am - 6pm Daily", "Phone: (555) 456-7890", "Community Events"]
icon: MapPin
} }
]} ]}
/> />