6 Commits

Author SHA1 Message Date
dc17e91601 Update src/app/page.tsx 2026-03-12 15:17:21 +00:00
2334631eb9 Merge version_5 into main
Merge version_5 into main
2026-03-12 15:06:52 +00:00
4bf3c8c2c2 Update src/app/page.tsx 2026-03-12 15:06:47 +00:00
6563236cf4 Merge version_4 into main
Merge version_4 into main
2026-03-12 15:03:00 +00:00
a5b37a844f Update src/app/page.tsx 2026-03-12 15:02:56 +00:00
26bb8aab75 Merge version_3 into main
Merge version_3 into main
2026-03-12 15:01:36 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
@@ -10,7 +10,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Coffee, Sparkles, CheckCircle, Star, Award } from 'lucide-react';
export default function LandingPage() {
@@ -42,30 +42,17 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardGallery
title="Artisan Coffee, Crafted Daily"
<HeroLogo
logoText="Hey man"
description="Experience the finest specialty coffee in an inviting atmosphere where every cup tells a story of quality, passion, and expertise."
tag="Welcome to Our Coffee House"
tagIcon={Coffee}
tagAnimation="slide-up"
buttons={[
{ text: "Explore Our Menu", href: "#menu" },
{ text: "Visit Us Today", href: "#contact" }
]}
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-dressed-elegant-gray-dress-holds-cup-takeaway-coffee-looking-away-while-standing-room-with-loft-interior_613910-6277.jpg", imageAlt: "Artisan coffee shop espresso station with professional barista equipment"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/coffee-bag-mockup_23-2151989760.jpg", imageAlt: "Premium coffee beans in artisan packaging"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/cup-cappuccino-with-coffee-beans-cake-table_141793-1295.jpg", imageAlt: "Freshly brewed cappuccino with latte art"
}
]}
mediaAnimation="slide-up"
background={{ variant: "radial-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/young-girl-dressed-elegant-gray-dress-holds-cup-takeaway-coffee-looking-away-while-standing-room-with-loft-interior_613910-6277.jpg"
imageAlt="Artisan coffee shop espresso station with professional barista equipment"
showDimOverlay={false}
ariaLabel="Welcome to Artisan Coffee Shop - Hero Section"
/>
</div>
@@ -228,43 +215,11 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterLogoReveal
logoText="Artisan Coffee"
copyrightText="© 2025 Artisan Coffee Shop | All Rights Reserved"
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "#home" },
{ label: "About", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Events", href: "#events" }
]
},
{
title: "Contact", items: [
{ label: "Phone", href: "tel:+1234567890" },
{ label: "Email", href: "mailto:hello@artisancoffee.com" },
{ label: "Location", href: "#" },
{ label: "Hours", href: "#" }
]
},
{
title: "Community", items: [
{ label: "Blog", href: "#" },
{ label: "Events", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Shop", href: "#" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Sustainability", href: "#" },
{ label: "Contact", href: "#" }
]
}
]}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Contact", href: "#" }}
ariaLabel="Site footer"
/>
</div>
</ThemeProvider>