Merge version_4 into main #7

Merged
bender merged 1 commits from version_4 into main 2026-04-28 08:35:42 +00:00

View File

@@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -83,35 +84,18 @@ export default function LandingPage() {
</div>
<div id="about" data-section="about">
<FeatureBento
animationType="slide-up"
textboxLayout="default"
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
features={[
{
title: "Vrhunska kava", description: "Autentična Lavazza zrna za neusporedivo iskustvo kave.", bentoComponent: "media-stack", items: [
{ imageSrc: "http://img.b2bpic.net/free-photo/male-barista-brewing-coffee-alternative-method-pour_176420-14715.jpg", imageAlt: "Kava" },
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-making-coffee_23-2150354576.jpg", imageAlt: "Kava" },
{ imageSrc: "http://img.b2bpic.net/free-photo/male-barista-brewing-coffee-alternative-method-pour_176420-14720.jpg", imageAlt: "Kava" },
],
},
{
title: "Ugodna terasa", description: "Zagrebački najopušteniji urbani bijeg za sva godišnja doba.", bentoComponent: "media-stack", items: [
{ imageSrc: "http://img.b2bpic.net/free-photo/rooftop-sunset-cityscape_23-2151945654.jpg", imageAlt: "Terasa" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tired-woman-sitting-cafe_23-2147765359.jpg", imageAlt: "Terasa" },
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-terrace-open-restaurant-with-sofas-chairs-tables_114579-2728.jpg", imageAlt: "Terasa" },
],
},
{
title: "Topla usluga", description: "Ljubazno i nasmijano osoblje posvećeno vašem savršenom iskustvu.", bentoComponent: "media-stack", items: [
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-eating-delicious-pizza_23-2150280263.jpg", imageAlt: "Osoblje" },
{ imageSrc: "http://img.b2bpic.net/free-photo/two-male-friends-together-restaurant_23-2150520083.jpg", imageAlt: "Osoblje" },
{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-cup-coffee_107420-12309.jpg?_wi=1", imageAlt: "Osoblje" },
],
},
title="O nama"
description="Naša priča počela je s vizijom stvaranja prostora gdje se susreću kultura kave, vrhunski kokteli i ugodna atmosfera."
bulletPoints={[
{ title: "Kvalitetni sastojci", description: "Koristimo samo premium Lavazza zrna i svježe lokalne namirnice." },
{ title: "Atmosfera", description: "Prostor dizajniran za opuštanje, rad i druženje u svakom trenutku." },
{ title: "Strast", description: "Naš tim je posvećen pružanju najbolje usluge svakom gostu." }
]}
title="Zašto Potter"
description="Otkrijte umjetnost atmosferskog luksuza gdje se vrhunska Lavazza kava susreće s energičnim večernjim koktelima."
imageSrc="http://img.b2bpic.net/free-photo/front-view-man-making-coffee_23-2150354576.jpg"
imagePosition="right"
/>
</div>
@@ -197,4 +181,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}