Merge version_6 into main

Merge version_6 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-06-09 10:15:53 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import { IceCream, Leaf, Sun } from "lucide-react";
@@ -18,7 +18,7 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="medium"
sizing="mediumLarge"
background="blurBottom"
background="none"
cardStyle="outline"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
@@ -113,24 +113,24 @@ export default function LandingPage() {
</div>
<div id="menu" data-section="menu">
<ProductCardThree
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "gelato-pistachio", name: "", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-tasty-pistachio-ice-cream-decorated-with-mint-scattered-pistachios-are-nearby-served-stone-slate-black-background_639032-917.jpg", imageAlt: "Pistachio Gelato", price: "", priceButtonProps: null},
id: "gelato-pistachio", name: "", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-tasty-pistachio-ice-cream-decorated-with-mint-scattered-pistachios-are-nearby-served-stone-slate-black-background_639032-917.jpg", imageAlt: "Pistachio Gelato", price: ""},
{
id: "gelato-stracciatella", name: "", imageSrc: "http://img.b2bpic.net/free-photo/homemade-roasted-plum-ice-cream-recipe-food-photography_53876-96019.jpg", imageAlt: "Stracciatella Gelato", price: "", priceButtonProps: null},
id: "gelato-stracciatella", name: "", imageSrc: "http://img.b2bpic.net/free-photo/homemade-roasted-plum-ice-cream-recipe-food-photography_53876-96019.jpg", imageAlt: "Stracciatella Gelato", price: ""},
{
id: "gelato-lemon", name: "", imageSrc: "http://img.b2bpic.net/free-photo/frozen-lemon-slice_23-2148176292.jpg", imageAlt: "Lemon Sorbetto", price: "", priceButtonProps: null},
id: "gelato-lemon", name: "", imageSrc: "http://img.b2bpic.net/free-photo/frozen-lemon-slice_23-2148176292.jpg", imageAlt: "Lemon Sorbetto", price: ""},
{
id: "coffee-freddo-espresso", name: "", imageSrc: "http://img.b2bpic.net/free-photo/glass-coke-with-ice-woman-sandy-beach_23-2148134677.jpg", imageAlt: "Freddo Espresso", price: "", priceButtonProps: null},
id: "coffee-freddo-espresso", name: "", imageSrc: "http://img.b2bpic.net/free-photo/glass-coke-with-ice-woman-sandy-beach_23-2148134677.jpg", imageAlt: "Freddo Espresso", price: ""},
{
id: "coffee-cappuccino", name: "", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-coffee-cup-books_23-2148882800.jpg", imageAlt: "Cappuccino", price: "", priceButtonProps: null},
id: "coffee-cappuccino", name: "", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-coffee-cup-books_23-2148882800.jpg", imageAlt: "Cappuccino", price: ""},
{
id: "gelato-chocolate", name: "", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-plate-with-chocolate-ice-cream_23-2148422095.jpg", imageAlt: "Dark Chocolate Gelato", price: "", priceButtonProps: null}
id: "gelato-chocolate", name: "", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-plate-with-chocolate-ice-cream_23-2148422095.jpg", imageAlt: "Dark Chocolate Gelato", price: ""}
]}
title=""
description=""
@@ -173,4 +173,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}