Compare commits
37 Commits
version_9
...
version_46
| Author | SHA1 | Date | |
|---|---|---|---|
| 0ea918d71a | |||
| 45954c4b94 | |||
| 7c00a04db1 | |||
| eac2c50989 | |||
| 12fb193b1f | |||
| 31ea1eb8ac | |||
| 127150c7a2 | |||
| cbd07a345c | |||
| df9809eab2 | |||
| 9f8529944e | |||
| 5588369cf6 | |||
| 4863b2174b | |||
| 51292201bc | |||
| a08ca02ac6 | |||
| b8ce5634e5 | |||
| 49e4dcd5cb | |||
| cfb46c096b | |||
| 2dfb85ba17 | |||
| a05281adcc | |||
| 0e47bad5c6 | |||
| d487e49446 | |||
| 71a14baf75 | |||
| 231a01ad8f | |||
| 21d8087eb0 | |||
| 8d37fa641c | |||
| 5d6fd1dbef | |||
| 9215fe1781 | |||
| e163ad9cf6 | |||
| ca0e4cd13f | |||
| 0bc4629e74 | |||
| 1bef719879 | |||
| 8cb05bf368 | |||
| 273209bb54 | |||
| 3515da8c7a | |||
| fe1b358b3b | |||
| e8e0b36c34 | |||
| c7ce182f71 |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #080000;
|
||||
--card: #1e0d0d;
|
||||
--foreground: #ffe6e6;
|
||||
--primary-cta: #ff7a7a;
|
||||
--secondary-cta: #1e0909;
|
||||
--accent: #7b4242;
|
||||
--background-accent: #65292c;
|
||||
--background: #fff5f8;
|
||||
--card: #ffebf0;
|
||||
--foreground: #3d2930;
|
||||
--primary-cta: #e890a8;
|
||||
--secondary-cta: #ffffff;
|
||||
--accent: #f5ccd5;
|
||||
--background-accent: #f0b8c4;
|
||||
|
||||
/* 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-lato), 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-lato), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
243
src/app/page.tsx
243
src/app/page.tsx
@@ -2,14 +2,21 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import HeroBillboardSplit from '@/components/sections/hero/HeroBillboardSplit';
|
||||
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||
import FooterSocial from '@/components/sections/footer/FooterSocial';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock } from "lucide-react";
|
||||
import FeatureCardEighteen from '@/components/sections/feature/FeatureCardEighteen';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import BlogCardEleven from '@/components/sections/blog/BlogCardEleven';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
|
||||
import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock, CheckCircle2, Check, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,7 +38,6 @@ 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"
|
||||
@@ -41,29 +47,34 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Welcome to Sweet Bakes"
|
||||
description="Handcrafted pastries and fresh-baked goods made with love every morning. Order now for same-day delivery."
|
||||
tag="Artisan Bakery"
|
||||
<HeroBillboardSplit
|
||||
title="Sweet Bakery "
|
||||
description="Made with love every morning."
|
||||
tag=""
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766917795607-6sca7wpy.jpg"
|
||||
imageAlt="Fresh bakery display with pastries and bread"
|
||||
frameStyle="card"
|
||||
buttons={[
|
||||
{ text: "Order Now", href: "products" },
|
||||
{ text: "Learn More", href: "about" }
|
||||
]}
|
||||
frameStyle="browser"
|
||||
buttons={[{"text":"Order","href":"https://google.com"},
|
||||
{"text":"Skip","href":"about"}]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Story"
|
||||
title="Started in a small kitchen, now serving hundreds of happy customers daily. Every pastry is made with the finest ingredients."
|
||||
description="Maria Santos"
|
||||
subdescription="Owner & Head Baker"
|
||||
icon={Heart}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140152452-p4x3ah4p.jpg"
|
||||
imageAlt="Maria Santos, bakery owner"
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardEighteen
|
||||
negativeCard={{
|
||||
title: "Without Us",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766917795607-6sca7wpy.jpg",
|
||||
items: ["Time-consuming processes", "Limited scalability", "Higher costs"]
|
||||
}}
|
||||
positiveCard={{
|
||||
title: "With Us",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766923138738-fu9kdakz.jpg",
|
||||
items: ["Streamlined workflow", "Scalable solutions", "Better value"]
|
||||
}}
|
||||
animationType="slide-up"
|
||||
title="What makes us stand out"
|
||||
description="See how we compare to traditional approaches"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
@@ -173,42 +184,171 @@ 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"
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
plans={[
|
||||
{
|
||||
id: "monthly",
|
||||
tag: "Monthly Retainer Plan",
|
||||
price: "$5,000",
|
||||
period: "/m",
|
||||
description: "Scale design, no-code builds & copy quicker than recruiting in-house.",
|
||||
button: { text: "Schedule a call", href: "#contact" },
|
||||
featuresTitle: "What's Included:",
|
||||
features: ["Unlimited design requests", "48-hour turnaround", "Dedicated project manager"]
|
||||
},
|
||||
{
|
||||
id: "quarterly",
|
||||
tag: "Quarterly Plan",
|
||||
price: "$12,000",
|
||||
period: "/q",
|
||||
description: "Ideal for growing teams needing consistent design support.",
|
||||
button: { text: "Get started", href: "#contact" },
|
||||
featuresTitle: "What's Included:",
|
||||
features: ["Priority support", "Strategy sessions", "Brand consistency"]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the plan that fits your needs"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardEleven
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "123 Bread St",
|
||||
title: "Downtown Main Store",
|
||||
items: ["6am - 8pm Daily", "Phone: (555) 123-4567", "Prime Location"]
|
||||
value: "10M+",
|
||||
title: "Organic Views",
|
||||
description: "Growth through smart content strategy",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766917795607-6sca7wpy.jpg",
|
||||
imageAlt: "Content creator working"
|
||||
},
|
||||
{
|
||||
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"]
|
||||
value: "500K+",
|
||||
title: "New Followers",
|
||||
description: "Engaged community members gained",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766923138738-fu9kdakz.jpg",
|
||||
imageAlt: "Social media engagement"
|
||||
}
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="See the results we've delivered for our clients"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
members={[
|
||||
{ id: "1", name: "Sophie P.", role: "Digital Nomad", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766154635301-vse33sxl.jpg", imageAlt: "Sophie P." },
|
||||
{ id: "2", name: "Michael C.", role: "Web Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183842429-uezzjpov.jpg", imageAlt: "Michael C." },
|
||||
{ id: "3", name: "Emma R.", role: "Brand Strategist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184309647-aqbmmuiq.jpg", imageAlt: "Emma R." }
|
||||
]}
|
||||
title="Meet Our Team"
|
||||
description="Get to know the people behind our success"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials-simple" data-section="testimonials-simple">
|
||||
<TestimonialCardTwelve
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah Johnson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766154635301-vse33sxl.jpg", imageAlt: "Sarah Johnson" },
|
||||
{ id: "2", name: "Michael Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183842429-uezzjpov.jpg", imageAlt: "Michael Chen" },
|
||||
{ id: "3", name: "Emma Davis", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184309647-aqbmmuiq.jpg", imageAlt: "Emma Davis" },
|
||||
{ id: "4", name: "James Wilson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766849444575-td00y2fe.jpg", imageAlt: "James Wilson" }
|
||||
]}
|
||||
cardTitle="Over 10,000 customers trust us to deliver exceptional results"
|
||||
cardTag="See what they say"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
faqs={[
|
||||
{ id: "1", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all our products." },
|
||||
{ id: "2", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days." },
|
||||
{ id: "3", title: "Do you ship internationally?", content: "Yes, we ship to over 100 countries worldwide." },
|
||||
{ id: "4", title: "Can I customize my order?", content: "Absolutely! Custom orders are welcome. Please contact us for details." }
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardEleven
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "New Genre Featured in Fonts in Use",
|
||||
author: "Leon Brown",
|
||||
description: "We have been featured in Fonts in Use for our typography choices.",
|
||||
tags: ["Feature", "Design"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766917795607-6sca7wpy.jpg",
|
||||
imageAlt: "Typography showcase"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "The Future of Web Design",
|
||||
author: "Sarah Mitchell",
|
||||
description: "Exploring emerging trends and technologies shaping the future of web design.",
|
||||
tags: ["Trends", "Web Design"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766923138738-fu9kdakz.jpg",
|
||||
imageAlt: "Web design future"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Latest News"
|
||||
description="Stay updated with our latest announcements"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="timeline" data-section="timeline">
|
||||
<TimelineProcessFlow
|
||||
title="Our Journey"
|
||||
description="Discover the milestones that shaped our story"
|
||||
tag="Timeline"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
items={[
|
||||
{
|
||||
id: "1",
|
||||
reverse: false,
|
||||
media: <div style={{ width: "100%", height: "100%", backgroundColor: "#f0f0f0", display: "flex", alignItems: "center", justifyContent: "center", borderRadius: "8px" }}><span>Foundation</span></div>,
|
||||
content: <><h3 style={{ fontSize: "20px", fontWeight: "600", marginBottom: "8px" }}>Foundation</h3><p style={{ marginBottom: "12px" }}>Started our journey</p><ul style={{ listStyle: "none", paddingLeft: "0" }}><li style={{ marginBottom: "6px" }}>✓ Launched MVP</li><li>✓ First customer</li></ul></>
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
reverse: true,
|
||||
media: <div style={{ width: "100%", height: "100%", backgroundColor: "#f0f0f0", display: "flex", alignItems: "center", justifyContent: "center", borderRadius: "8px" }}><span>Growth</span></div>,
|
||||
content: <><h3 style={{ fontSize: "20px", fontWeight: "600", marginBottom: "8px" }}>Growth</h3><p style={{ marginBottom: "12px" }}>Expanded our reach</p><ul style={{ listStyle: "none", paddingLeft: "0" }}><li style={{ marginBottom: "6px" }}>✓ Scaled team</li><li>✓ Global expansion</li></ul></>
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-text" data-section="contact-text">
|
||||
<ContactText
|
||||
text="Ready to start your next project? Let's create something amazing together."
|
||||
animationType="entrance-slide"
|
||||
buttons={[{ text: "Get in Touch", href: "#contact" }, { text: "View Portfolio", href: "#products" }]}
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -280,13 +420,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSocial
|
||||
logoText="Sweet Bakes"
|
||||
logoText="Sweet Bakery"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Locations", href: "locations" },
|
||||
{ label: "Contact", href: "contact" }
|
||||
]
|
||||
},
|
||||
@@ -309,7 +448,7 @@ export default function LandingPage() {
|
||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }
|
||||
]}
|
||||
copyrightText="© Sweet Bakes, 2025. All rights reserved."
|
||||
copyrightText="© Sweet Bakery, 2025. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user