Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-05 17:21:29 +00:00

View File

@@ -11,7 +11,8 @@ import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Flame, Leaf, User } from "lucide-react";
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import { Flame, Leaf, User, Camera } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,6 +33,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Menu", id: "#menu" },
{ name: "Galeria", id: "#gallery" },
{ name: "O Nas", id: "#about" },
{ name: "Przyjęcia", id: "#events" },
{ name: "Opinie", id: "#testimonials" },
@@ -92,6 +94,21 @@ export default function LandingPage() {
/>
</div>
<div id="gallery" data-section="gallery">
<TeamCardSix
title="NASZE WNĘTRZA"
description="Zobacz miejsce, w którym powstają najlepsze wspomnienia."
gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
useInvertedBackground={true}
members={[
{ id: "g1", name: "Sala główna", role: "Przytulny wystrój", imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-food-snack-lunch-ideas-homemade-bread-with-cheese-avocado_8353-8785.jpg?_wi=8" },
{ id: "g2", name: "Strefa relaksu", role: "Idealna na kawę", imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-food-snack-lunch-ideas-homemade-bread-with-cheese-avocado_8353-8785.jpg?_wi=9" },
{ id: "g3", name: "Ogródek", role: "Letnia aura", imageSrc: "http://img.b2bpic.net/free-photo/fresh-healthy-food-snack-lunch-ideas-homemade-bread-with-cheese-avocado_8353-8785.jpg?_wi=10" }
]}
/>
</div>
<div id="events" data-section="events">
<PricingCardFive
animationType="slide-up"
@@ -159,4 +176,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}