5 Commits

Author SHA1 Message Date
95df31e87a Merge version_6 into main
Merge version_6 into main
2026-06-09 10:24:11 +00:00
4a2ad1bc4f Update src/app/page.tsx 2026-06-09 10:24:04 +00:00
8ebae83d71 Merge version_6 into main
Merge version_6 into main
2026-06-09 10:15:53 +00:00
3760de6041 Update src/app/page.tsx 2026-06-09 10:15:49 +00:00
c7d4c036b4 Merge version_5 into main
Merge version_5 into main
2026-06-09 10:11:46 +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"
@@ -53,7 +53,7 @@ export default function LandingPage() {
variant: "radial-gradient"}}
title="Gelato is always a good idea"
description="Experience the freshest authentic Italian gelato and vibrant summer-vibe coffee at Piccolo Posto in Samos, Greece. Your sweetest escape awaits!"
imageSrc="http://img.b2bpic.net/free-photo/woman-resting-beach-bar-drink-refreshing-cocktail_1153-7746.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BaZPj9l8PBnfhD6Jt1B2YaxoQz/uploaded-1780999748680-6hk1152n.png"
imageAlt="Delicious Italian gelato scoop in a cone"
mediaAnimation="slide-up"
buttons={[
@@ -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>
);
}
}