Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ad00a3494 | |||
| c95122a562 |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #fbfaff;;
|
||||
--card: #f7f5ff;;
|
||||
--foreground: #0f0022;;
|
||||
--primary-cta: #8b5cf6;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #d8cef5;;
|
||||
--background-accent: #c4a8f9;;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #fffffae6;
|
||||
--primary-cta: #fde047;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-plus-jakarta-sans), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-plus-jakarta-sans), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -8,7 +8,7 @@ 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 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";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -112,7 +112,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="locations" data-section="locations">
|
||||
<MetricCardOne
|
||||
<MetricCardSeven
|
||||
title="Our Bakery Locations"
|
||||
description="Visit one of our fresh bakeries in your neighborhood. Open daily for your favorite treats."
|
||||
tag="Find Us"
|
||||
@@ -124,31 +124,27 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "Downtown",
|
||||
title: "Main Store",
|
||||
description: "123 Bread Street, City Center. 6am-8pm daily. (555) 123-4567",
|
||||
icon: MapPin
|
||||
value: "123 Bread St",
|
||||
title: "Downtown Main Store",
|
||||
items: ["6am - 8pm Daily", "Phone: (555) 123-4567", "Prime Location"]
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "Riverside",
|
||||
title: "North Branch",
|
||||
description: "456 Pastry Lane, Riverside. 7am-7pm daily. (555) 234-5678",
|
||||
icon: Clock
|
||||
value: "456 Pastry Ln",
|
||||
title: "Riverside North Branch",
|
||||
items: ["7am - 7pm Daily", "Phone: (555) 234-5678", "Spacious Seating"]
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "Uptown",
|
||||
title: "Premium Location",
|
||||
description: "789 Croissant Ave, Uptown. 6:30am-9pm daily. (555) 345-6789",
|
||||
icon: Phone
|
||||
value: "789 Croissant Ave",
|
||||
title: "Uptown Premium Location",
|
||||
items: ["6:30am - 9pm Daily", "Phone: (555) 345-6789", "Extended Hours"]
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "West End",
|
||||
title: "Community Hub",
|
||||
description: "321 Sourdough St, West End. 7am-6pm daily. (555) 456-7890",
|
||||
icon: MapPin
|
||||
value: "321 Sourdough St",
|
||||
title: "West End Community Hub",
|
||||
items: ["7am - 6pm Daily", "Phone: (555) 456-7890", "Community Events"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user