Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #7.
This commit is contained in:
2026-02-17 15:22:30 +00:00
5 changed files with 29 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FeatureBento from '@/components/sections/feature/FeatureBento'; import FeatureBento from '@/components/sections/feature/FeatureBento';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
@@ -65,17 +65,33 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroBillboardCarousel
logoText="Barakuda" slides={[
description="Experience the finest specialty coffee crafted with precision and passion. A sanctuary for coffee lovers seeking authentic flavor and genuine community." {
buttons={[ id: "1", title: "Barakuda", description: "Experience the finest specialty coffee crafted with precision and passion.", imageSrc: "https://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg", imageAlt: "Barakuda coffee shop interior", buttons: [
{ text: "Explore Our Menu", href: "#features" }, { text: "Explore Our Menu", href: "#features" },
{ text: "Book a Table", href: "#contact" } { text: "Book a Table", href: "#contact" }
]
},
{
id: "2", title: "Specialty Coffee", description: "A sanctuary for coffee lovers seeking authentic flavor and genuine community.", imageSrc: "https://img.b2bpic.net/free-photo/barista-work-coffee-shop_158595-2328.jpg", imageAlt: "Barista preparing specialty coffee", buttons: [
{ text: "Learn More", href: "#about" },
{ text: "Visit Us", href: "#contact" }
]
},
{
id: "3", title: "Ethically Sourced", description: "Direct relationships with coffee farmers worldwide ensuring premium quality.", imageSrc: "https://img.b2bpic.net/free-photo/coffee-bean-pattern_181624-8624.jpg", imageAlt: "Coffee beans", buttons: [
{ text: "Our Story", href: "#about" },
{ text: "Get Started", href: "#contact" }
]
}
]} ]}
autoPlay={true}
autoPlayInterval={5000}
background={{ variant: "plain" }} background={{ variant: "plain" }}
imageAlt="Barista at work in coffee shop"
mediaAnimation="none" mediaAnimation="none"
frameStyle="card" frameStyle="card"
ariaLabel="Barakuda coffee showcase carousel"
/> />
</div> </div>