2 Commits

Author SHA1 Message Date
b3a42badf4 Update src/app/page.tsx 2026-01-14 20:11:45 +00:00
7658c89e26 Update src/app/layout.tsx 2026-01-14 20:11:44 +00:00
2 changed files with 6 additions and 8 deletions

View File

@@ -1264,4 +1264,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -9,7 +9,6 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBase from '@/components/sections/footer/FooterBase';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award } from "lucide-react";
export default function LandingPage() {
return (
@@ -82,8 +81,7 @@ export default function LandingPage() {
<FeatureCardTwentyOne
title="What Makes Us Special"
description="Experience the difference that authentic craftsmanship, premium ingredients, and genuine aloha spirit bring to every visit"
tag="Premium Features"
tagIcon={Award}
tag="Features"
accordionItems={[
{
id: "1", title: "Premium Local Coffee Sourcing", content: "We partner directly with Hawaiian coffee growers to bring you the freshest, highest-quality beans. Our direct relationships ensure sustainable practices and support for local farming communities."
@@ -115,8 +113,8 @@ export default function LandingPage() {
tag="Menu Highlights"
products={[
{
id: "1", brand: "PAVARAGA", name: "Tropical Ice Tea", price: "$18.00", rating: 5,
reviewCount: "247", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_38BjcazLrwif0ixg9s4SVqUVz24/tmp/acai_bowl.jpg", imageAlt: "Acai Bowl beverage"
id: "1", brand: "PAVARAGA", name: "Tropical Acai Bowl", price: "$18.00", rating: 5,
reviewCount: "247", imageSrc: "https://images.unsplash.com/photo-1590080876_1e5db6e3ea76?w=500&h=500&fit=crop", imageAlt: "Tropical Acai Bowl with fresh fruit"
},
{
id: "2", brand: "PAVARAGA", name: "Island Espresso Blend", price: "$6.50", rating: 5,
@@ -192,7 +190,7 @@ export default function LandingPage() {
{
title: "Café", items: [
{ label: "Menu", href: "products" },
{ label: "Location & Hours", href: "contact" },
{ label: "Hours", href: "contact" },
{ label: "Our Story", href: "about" }
]
},
@@ -215,4 +213,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}