Compare commits

...

3 Commits

Author SHA1 Message Date
5ad00a3494 Update src/app/globals.css 2025-12-28 10:10:36 +00:00
c95122a562 Update src/app/page.tsx 2025-12-28 10:08:32 +00:00
75177eff2f Update src/app/page.tsx 2025-12-28 09:58:18 +00:00
2 changed files with 52 additions and 10 deletions

View File

@@ -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;
}

View File

@@ -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" }
]
},