Update src/app/page.tsx
This commit is contained in:
@@ -8,7 +8,8 @@ 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 { Heart, Star, Quote, Instagram, Facebook } from "lucide-react";
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
|
import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -30,6 +31,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "home" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Products", id: "products" },
|
{ name: "Products", id: "products" },
|
||||||
|
{ name: "Locations", id: "locations" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
brandName="Sweet Bakes"
|
brandName="Sweet Bakes"
|
||||||
@@ -109,6 +111,49 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="locations" data-section="locations">
|
||||||
|
<MetricCardOne
|
||||||
|
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: "Downtown",
|
||||||
|
title: "Main Store",
|
||||||
|
description: "123 Bread Street, City Center. 6am-8pm daily. (555) 123-4567",
|
||||||
|
icon: MapPin
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2",
|
||||||
|
value: "Riverside",
|
||||||
|
title: "North Branch",
|
||||||
|
description: "456 Pastry Lane, Riverside. 7am-7pm daily. (555) 234-5678",
|
||||||
|
icon: Clock
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3",
|
||||||
|
value: "Uptown",
|
||||||
|
title: "Premium Location",
|
||||||
|
description: "789 Croissant Ave, Uptown. 6:30am-9pm daily. (555) 345-6789",
|
||||||
|
icon: Phone
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4",
|
||||||
|
value: "West End",
|
||||||
|
title: "Community Hub",
|
||||||
|
description: "321 Sourdough St, West End. 7am-6pm daily. (555) 456-7890",
|
||||||
|
icon: MapPin
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardThirteen
|
<TestimonialCardThirteen
|
||||||
title="What Our Customers Say"
|
title="What Our Customers Say"
|
||||||
@@ -183,6 +228,7 @@ export default function LandingPage() {
|
|||||||
title: "Company",
|
title: "Company",
|
||||||
items: [
|
items: [
|
||||||
{ label: "About Us", href: "about" },
|
{ label: "About Us", href: "about" },
|
||||||
|
{ label: "Locations", href: "locations" },
|
||||||
{ label: "Contact", href: "contact" }
|
{ label: "Contact", href: "contact" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user