Compare commits

...

12 Commits

Author SHA1 Message Date
cbd07a345c Update src/app/page.tsx 2025-12-28 12:38:09 +00:00
df9809eab2 Update src/app/page.tsx 2025-12-28 12:35:35 +00:00
9f8529944e Update src/app/page.tsx 2025-12-28 12:34:24 +00:00
5588369cf6 Update src/app/page.tsx 2025-12-28 12:33:10 +00:00
4863b2174b Update src/app/page.tsx 2025-12-28 12:32:40 +00:00
51292201bc Update src/app/page.tsx 2025-12-28 12:32:19 +00:00
a08ca02ac6 Update src/app/page.tsx 2025-12-28 12:09:13 +00:00
b8ce5634e5 Update src/app/page.tsx 2025-12-28 12:08:57 +00:00
49e4dcd5cb Update src/app/page.tsx 2025-12-28 12:04:39 +00:00
cfb46c096b Update src/app/page.tsx 2025-12-28 12:02:48 +00:00
2dfb85ba17 Update src/app/page.tsx 2025-12-28 12:02:13 +00:00
a05281adcc Update src/app/page.tsx 2025-12-28 12:01:51 +00:00

View File

@@ -8,7 +8,6 @@ import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
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 MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
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() {
@@ -31,7 +30,6 @@ 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"
@@ -42,7 +40,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardSplit <HeroBillboardSplit
title="Sweet Bakes" title="Sweet Bakery "
description="Made with love every morning." description="Made with love every morning."
tag="" tag=""
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766917795607-6sca7wpy.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766917795607-6sca7wpy.jpg"
@@ -171,34 +169,21 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="locations" data-section="locations"> <div id="map" data-section="map">
<MetricCardFourteen <div style={{
title="Our Locations" width: "100%",
tag="Find Us" height: "500px",
metrics={[ backgroundColor: "#f0f0f0",
{ display: "flex",
id: "1", alignItems: "center",
value: "Downtown Main Store", justifyContent: "center",
description: "123 Bread St | 6am - 8pm Daily | (555) 123-4567" flexDirection: "column",
}, gap: "16px"
{ }}>
id: "2", <MapPin size={48} />
value: "Riverside North Branch", <p style={{ fontSize: "18px", fontWeight: "600" }}>Map Section</p>
description: "456 Pastry Ln | 7am - 7pm Daily | (555) 234-5678" <p style={{ fontSize: "14px", color: "#666" }}>Locations map coming soon</p>
}, </div>
{
id: "3",
value: "Uptown Premium Location",
description: "789 Croissant Ave | 6:30am - 9pm Daily | (555) 345-6789"
},
{
id: "4",
value: "West End Community Hub",
description: "321 Sourdough St | 7am - 6pm Daily | (555) 456-7890"
}
]}
useInvertedBackground="noInvert"
/>
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
@@ -275,7 +260,6 @@ 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" }
] ]
}, },