Compare commits

9 Commits

Author SHA1 Message Date
f629b37ac8 Merge version_2 into main
Merge version_2 into main
2026-03-13 10:48:33 +00:00
05da47241c Update src/app/page.tsx 2026-03-13 10:48:29 +00:00
13445d25d1 Merge version_2 into main
Merge version_2 into main
2026-03-13 10:47:40 +00:00
a7d031a91b Update src/app/page.tsx 2026-03-13 10:47:35 +00:00
e8524cfbbc Merge version_2 into main
Merge version_2 into main
2026-03-13 10:46:46 +00:00
8e291974f5 Update src/app/page.tsx 2026-03-13 10:46:42 +00:00
4d9eec0c31 Merge version_2 into main
Merge version_2 into main
2026-03-13 10:45:52 +00:00
a77b666294 Update src/app/page.tsx 2026-03-13 10:45:48 +00:00
0e105a9336 Merge version_1 into main
Merge version_1 into main
2026-03-13 10:38:42 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
@@ -10,7 +10,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Award, Clock, Coffee, Mail, Newspaper, Sparkles, Star, TrendingUp, Users } from 'lucide-react'; import { Award, Clock, Coffee, Mail, Newspaper, Sparkles, Star, TrendingUp, Users, BarChart3, TrendingUp as TrendingUpIcon } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -40,20 +40,49 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCarouselLogo <HeroBillboardDashboard
logoText="Brew Haven" title="Brew Haven"
description="Premium specialty coffee crafted with passion. Experience the art of perfect brewing." description="Premium specialty coffee crafted with passion. Experience the art of perfect brewing."
tag="Coffee Excellence"
tagIcon={Sparkles}
tagAnimation="blur-reveal"
buttons={[ buttons={[
{ text: "Order Now", href: "#products" }, { text: "Order Now", href: "#products" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
]} ]}
slides={[ buttonAnimation="blur-reveal"
{ background={{ variant: "plain" }}
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6mgex6", imageAlt: "Artisan coffee brewing" dashboard={{
} title: "Dashboard", stats: [
]} { title: "Orders Today", values: "1,234", icon: TrendingUpIcon },
autoplayDelay={4000} { title: "Active Members", values: "15K+", icon: Users },
showDimOverlay={false} { title: "Awards Won", values: "12+", icon: Award }
],
logoIcon: Coffee,
sidebarItems: [
{ icon: BarChart3 },
{ icon: Coffee },
{ icon: TrendingUpIcon }
],
buttons: [
{ text: "View Orders", href: "#products" }
],
listItems: [
{ title: "Premium Espresso", values: "$4.50" },
{ title: "Velvety Cappuccino", values: "$5.50" },
{ title: "Cold Brew", values: "$5.00" }
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=673ag3", imageAlt: "Brew Haven Dashboard", searchPlaceholder: "Search coffee...", chartTitle: "Weekly Sales", chartData: [
{ label: "Mon", value: 100 },
{ label: "Tue", value: 120 },
{ label: "Wed", value: 110 },
{ label: "Thu", value: 140 },
{ label: "Fri", value: 160 },
{ label: "Sat", value: 180 },
{ label: "Sun", value: 150 }
],
listTitle: "Today's Specials"
}}
/> />
</div> </div>