Compare commits
8 Commits
4d9eec0c31
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 7faab19f48 | |||
| 6fe276e753 | |||
| f629b37ac8 | |||
| 05da47241c | |||
| 13445d25d1 | |||
| a7d031a91b | |||
| e8524cfbbc | |||
| 8e291974f5 |
@@ -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 HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
import HeroSignup from '@/components/sections/hero/HeroSignup';
|
||||||
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, BarChart3, TrendingUp as TrendingUpIcon } from 'lucide-react';
|
import { Award, Clock, Coffee, Mail, Newspaper, Sparkles, Star, TrendingUp, Users } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -40,49 +40,16 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardDashboard
|
<HeroSignup
|
||||||
title="Brew Haven"
|
title="Premium Specialty Coffee Crafted with Passion"
|
||||||
description="Premium specialty coffee crafted with passion. Experience the art of perfect brewing."
|
description="Experience the art of perfect brewing. Discover our handpicked selection of single-origin beans from sustainable farms across the globe."
|
||||||
tag="Coffee Excellence"
|
tag="Welcome to Brew Haven"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
buttons={[
|
|
||||||
{ text: "Order Now", href: "#products" },
|
|
||||||
{ text: "Learn More", href: "#about" }
|
|
||||||
]}
|
|
||||||
buttonAnimation="blur-reveal"
|
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
dashboard={{
|
inputPlaceholder="Enter your email"
|
||||||
title: "Dashboard", stats: [
|
buttonText="Order Now"
|
||||||
{ label: "Orders Today", value: "1,234", icon: TrendingUpIcon },
|
onSubmit={(email) => console.log('Email:', email)}
|
||||||
{ label: "Active Members", value: "15K+", icon: Users },
|
|
||||||
{ label: "Awards Won", value: "12+", icon: Award }
|
|
||||||
],
|
|
||||||
logoIcon: Coffee,
|
|
||||||
sidebarItems: [
|
|
||||||
{ label: "Dashboard", icon: BarChart3 },
|
|
||||||
{ label: "Orders", icon: Coffee },
|
|
||||||
{ label: "Analytics", icon: TrendingUpIcon }
|
|
||||||
],
|
|
||||||
buttons: [
|
|
||||||
{ text: "View Orders", href: "#products" }
|
|
||||||
],
|
|
||||||
listItems: [
|
|
||||||
{ title: "Premium Espresso", value: "$4.50" },
|
|
||||||
{ title: "Velvety Cappuccino", value: "$5.50" },
|
|
||||||
{ title: "Cold Brew", value: "$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: [
|
|
||||||
{ name: "Mon", value: 100 },
|
|
||||||
{ name: "Tue", value: 120 },
|
|
||||||
{ name: "Wed", value: 110 },
|
|
||||||
{ name: "Thu", value: 140 },
|
|
||||||
{ name: "Fri", value: 160 },
|
|
||||||
{ name: "Sat", value: 180 },
|
|
||||||
{ name: "Sun", value: 150 }
|
|
||||||
],
|
|
||||||
listTitle: "Today's Specials"
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user