Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c95122a562 | |||
| 75177eff2f |
@@ -8,7 +8,8 @@ import ProductCardFive from '@/components/sections/product/ProductCardFive';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||
import FooterSocial from '@/components/sections/footer/FooterSocial';
|
||||
import { Heart, Star, Quote, Instagram, Facebook } from "lucide-react";
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,6 +31,7 @@ export default function LandingPage() {
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Locations", id: "locations" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Sweet Bakes"
|
||||
@@ -109,6 +111,45 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="locations" data-section="locations">
|
||||
<MetricCardSeven
|
||||
title="Our Bakery Locations"
|
||||
description="Visit one of our fresh bakeries in your neighborhood. Open daily for your favorite treats."
|
||||
tag="Find Us"
|
||||
tagIcon={MapPin}
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "123 Bread St",
|
||||
title: "Downtown Main Store",
|
||||
items: ["6am - 8pm Daily", "Phone: (555) 123-4567", "Prime Location"]
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "456 Pastry Ln",
|
||||
title: "Riverside North Branch",
|
||||
items: ["7am - 7pm Daily", "Phone: (555) 234-5678", "Spacious Seating"]
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "789 Croissant Ave",
|
||||
title: "Uptown Premium Location",
|
||||
items: ["6:30am - 9pm Daily", "Phone: (555) 345-6789", "Extended Hours"]
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "321 Sourdough St",
|
||||
title: "West End Community Hub",
|
||||
items: ["7am - 6pm Daily", "Phone: (555) 456-7890", "Community Events"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
title="What Our Customers Say"
|
||||
@@ -183,6 +224,7 @@ export default function LandingPage() {
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Locations", href: "locations" },
|
||||
{ label: "Contact", href: "contact" }
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user