Merge version_2 into main #1
226
src/app/page.tsx
226
src/app/page.tsx
@@ -2,6 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { Facebook, Instagram, MapPin, Mail, Phone, Clock } from "lucide-react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
@@ -28,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "O nas",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Opinie",
|
||||
id: "#testimonials",
|
||||
},
|
||||
{
|
||||
name: "Kontakt",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "O nas", id: "#about" },
|
||||
{ name: "Opinie", id: "#testimonials" },
|
||||
{ name: "Kontakt", id: "#contact" },
|
||||
]}
|
||||
brandName="Qrizza Zbiersk"
|
||||
/>
|
||||
@@ -51,78 +40,25 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="QRIZZA: Kurczak & Pizza w Zbiersku"
|
||||
description="Najlepsza pizza w mieście i chrupiące kawałki kurczaka. Przyjdź i poczuj prawdziwy smak, który pokochała cała okolica!"
|
||||
kpis={[
|
||||
{
|
||||
value: "100%",
|
||||
label: "Świeże składniki",
|
||||
},
|
||||
{
|
||||
value: "20min",
|
||||
label: "Szybki czas przygotowania",
|
||||
},
|
||||
{
|
||||
value: "15+",
|
||||
label: "Rodzaje pizzy",
|
||||
},
|
||||
{ value: "100%", label: "Świeże składniki" },
|
||||
{ value: "20min", label: "Szybki czas przygotowania" },
|
||||
{ value: "15+", label: "Rodzaje pizzy" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Zobacz menu",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Zobacz menu", href: "#menu" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cut-pizzas-white-table_23-2148149118.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatarText="Ponad 1000 zadowolonych klientów!"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/horizontal-cropped-view-cheerful-black-woman-with-afro-hairstyle-eats-delicious-italian-pizza-from-boyfriends-hands_273609-18723.jpg",
|
||||
alt: "Klienci",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-bearded-gardener-man-wearing-jumpsuit-hat-holding-pumpkin-going-bite-it-standing-blue-wall_141793-96787.jpg",
|
||||
alt: "Klienci",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg",
|
||||
alt: "Klienci",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-eating-sushi-park-picnic-nature_169016-21839.jpg",
|
||||
alt: "Klienci",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-laughing-while-sitting-table-with-food_23-2149187051.jpg",
|
||||
alt: "Klienci",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Pizza 100% Mozzarella",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Chrupiący Kurczak",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Lokalne Składniki",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Najlepszy Smak",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Dostawa w Zbiersku",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/horizontal-cropped-view-cheerful-black-woman-with-afro-hairstyle-eats-delicious-italian-pizza-from-boyfriends-hands_273609-18723.jpg", alt: "Klienci" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-bearded-gardener-man-wearing-jumpsuit-hat-holding-pumpkin-going-bite-it-standing-blue-wall_141793-96787.jpg", alt: "Klienci" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg", alt: "Klienci" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-woman-eating-sushi-park-picnic-nature_169016-21839.jpg", alt: "Klienci" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-laughing-while-sitting-table-with-food_23-2149187051.jpg", alt: "Klienci" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -134,45 +70,13 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Pizza Pepperoni",
|
||||
price: "32 PLN",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-delicious-pizza-wooden-cutting-board-left-side-dark-blue-surface-with-free-space_179666-42379.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Kurczak Classic",
|
||||
price: "24 PLN",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-golden-fried-chicken-wings-fresh-from-fryer_84443-75179.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Pizza Margherita",
|
||||
price: "28 PLN",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mushroom-pizza-with-cheese-olives-seasonings-dark-surface-meal-italian-food-dough-snack-pizza_140725-101760.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Skrzydełka BBQ",
|
||||
price: "26 PLN",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-inside-plate-brown-surface-burger-meal-sandwich-food-dinner-fries-meat-lunch-free-space_140725-156909.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Pizza Wiejska",
|
||||
price: "35 PLN",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-pizza-wooden-table_23-2148305639.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Kurczak Strips",
|
||||
price: "22 PLN",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boneless-chicken-piece-with-sauce_23-2149973032.jpg",
|
||||
},
|
||||
{ id: "1", name: "Pizza Pepperoni", price: "32 PLN", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-delicious-pizza-wooden-cutting-board-left-side-dark-blue-surface-with-free-space_179666-42379.jpg" },
|
||||
{ id: "2", name: "Kurczak Classic", price: "24 PLN", imageSrc: "http://img.b2bpic.net/free-photo/crispy-golden-fried-chicken-wings-fresh-from-fryer_84443-75179.jpg" },
|
||||
{ id: "3", name: "Pizza Margherita", price: "28 PLN", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-mushroom-pizza-with-cheese-olives-seasonings-dark-surface-meal-italian-food-dough-snack-pizza_140725-101760.jpg" },
|
||||
{ id: "4", name: "Skrzydełka BBQ", price: "26 PLN", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-inside-plate-brown-surface-burger-meal-sandwich-food-dinner-fries-meat-lunch-free-space_140725-156909.jpg" },
|
||||
]}
|
||||
title="Nasze Specjały"
|
||||
description="Odkryj naszą ofertę pysznych pizz i soczystych kurczaków przygotowywanych według autorskich przepisów."
|
||||
description="Odkryj naszą ofertę pysznych pizz i soczystych kurczaków."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -181,23 +85,13 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="O nas w Zbiersku"
|
||||
description="Jesteśmy lokalną restauracją, dla której priorytetem jest jakość i smak. Nasz zespół dba o to, by każda pizza i każdy kawałek kurczaka smakowały wyjątkowo."
|
||||
description="Jesteśmy lokalną restauracją, dla której priorytetem jest jakość i smak."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Świeżość",
|
||||
description: "Używamy tylko lokalnych, sprawdzonych składników.",
|
||||
},
|
||||
{
|
||||
title: "Pasja",
|
||||
description: "Jedzenie to nasza wielka radość, którą chcemy się dzielić.",
|
||||
},
|
||||
{
|
||||
title: "Dostępność",
|
||||
description: "Zapraszamy każdego na wyjątkowy posiłek w miłej atmosferze.",
|
||||
},
|
||||
{ title: "Świeżość", description: "Używamy tylko lokalnych, sprawdzonych składników." },
|
||||
{ title: "Pasja", description: "Jedzenie to nasza wielka radość." },
|
||||
{ title: "Dostępność", description: "Zapraszamy każdego na posiłek." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/handful-flour-with-egg-rustic-kitchen-against-background-men-s-hands-knead-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-467.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -207,46 +101,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Anna K.",
|
||||
handle: "@anna",
|
||||
testimonial: "Najlepsza pizza w Zbiersku, zawsze świeża!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-cropped-view-cheerful-black-woman-with-afro-hairstyle-eats-delicious-italian-pizza-from-boyfriends-hands_273609-18723.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Tomasz M.",
|
||||
handle: "@tomasz",
|
||||
testimonial: "Kurczak jest niezwykle chrupiący i soczysty.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-bearded-gardener-man-wearing-jumpsuit-hat-holding-pumpkin-going-bite-it-standing-blue-wall_141793-96787.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Marta S.",
|
||||
handle: "@marta",
|
||||
testimonial: "Szybka obsługa i bardzo dobre ceny.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jan D.",
|
||||
handle: "@jan",
|
||||
testimonial: "Moje ulubione miejsce na szybki lunch.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-sushi-park-picnic-nature_169016-21839.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Katarzyna W.",
|
||||
handle: "@kat",
|
||||
testimonial: "Często zamawiam na wynos, pizza zawsze gorąca.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-laughing-while-sitting-table-with-food_23-2149187051.jpg",
|
||||
},
|
||||
{ id: "1", name: "Anna K.", handle: "@anna", testimonial: "Najlepsza pizza w Zbiersku, zawsze świeża!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/horizontal-cropped-view-cheerful-black-woman-with-afro-hairstyle-eats-delicious-italian-pizza-from-boyfriends-hands_273609-18723.jpg" },
|
||||
{ id: "2", name: "Tomasz M.", handle: "@tomasz", testimonial: "Kurczak jest niezwykle chrupiący i soczysty.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-bearded-gardener-man-wearing-jumpsuit-hat-holding-pumpkin-going-bite-it-standing-blue-wall_141793-96787.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Co mówią o nas klienci?"
|
||||
@@ -258,36 +114,24 @@ export default function LandingPage() {
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Skontaktuj się z nami"
|
||||
description="Masz pytania lub chcesz zamówić telefonicznie? Napisz do nas!"
|
||||
description="Masz pytania lub chcesz zamówić telefonicznie?"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Imię i nazwisko",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Adres e-mail",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Imię", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Twoja wiadomość",
|
||||
rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Wiadomość", rows: 4, required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-restaurant-is-decorated-with-greens_8353-9675.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="QRIZZA Zbiersk"
|
||||
copyrightText="© 2025 QRIZZA Kurczak & Pizza. Wszelkie prawa zastrzeżone."
|
||||
copyrightText="© 2025 QRIZZA. Wszelkie prawa zastrzeżone."
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user