Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ad00a3494 | |||
| c95122a562 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fbfaff;;
|
--background: #0a0a0a;
|
||||||
--card: #f7f5ff;;
|
--card: #1a1a1a;
|
||||||
--foreground: #0f0022;;
|
--foreground: #fffffae6;
|
||||||
--primary-cta: #8b5cf6;;
|
--primary-cta: #fde047;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;
|
||||||
--accent: #d8cef5;;
|
--accent: #737373;
|
||||||
--background-accent: #c4a8f9;;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-plus-jakarta-sans), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
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 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
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user