Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 63a1d70f99 | |||
| 25bde3f6e2 | |||
| 90ed02bf4c | |||
| 426f329f5a | |||
| 7403d4bcb8 | |||
| 2debd26039 |
@@ -1,74 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import TextAbout from "@/components/sections/about/TextAbout";
|
|
||||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|
||||||
|
|
||||||
export default function AboutPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="background-highlight"
|
|
||||||
borderRadius="soft"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="mediumLarge"
|
|
||||||
background="floatingGradient"
|
|
||||||
cardStyle="glass-elevated"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="layered"
|
|
||||||
headingFontWeight="semibold"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
brandName="Restauracja Goloneczka"
|
|
||||||
navItems={[
|
|
||||||
{ name: "Menu", id: "menu" },
|
|
||||||
{ name: "O nas", id: "/about" },
|
|
||||||
{ name: "Kontakt", id: "contact" },
|
|
||||||
{ name: "Opinie", id: "testimonials" }
|
|
||||||
]}
|
|
||||||
button={{
|
|
||||||
text: "Zarezerwuj stolik", href: "#contact"
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<TextAbout
|
|
||||||
title="W Restauracji Goloneczka łączymy dziedzictwo polskich receptur z najwyższą jakością lokalnych produktów. Nasze wnętrze to miejsce, gdzie historia spotyka się z doskonałą gościnnością."
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardFive
|
|
||||||
title="Co mówią nasi goście"
|
|
||||||
description="Zobacz, dlaczego klienci wracają do nas po więcej."
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "1", name: "Anna Kowalska", date: "12.05.2024", title: "Najlepsza golonka!", quote: "Golonka rozpadła się w ustach. Smakuje dokładnie jak u babci. Bardzo polecam to miejsce!", tag: "Klient", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing_23-2149361254.jpg"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2", name: "Marek Nowak", date: "20.05.2024", title: "Domowy klimat", quote: "Cudowne miejsce z przepysznym żurkiem. Obsługa przemiła, na pewno wrócimy na obiad.", tag: "Klient", avatarSrc: "http://img.b2bpic.net/free-photo/man-wearing-t-shirt-gesturing_23-2149393359.jpg"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterLogoReveal
|
|
||||||
logoText="Restauracja Goloneczka"
|
|
||||||
leftLink={{ text: "Polityka prywatności", href: "#" }}
|
|
||||||
rightLink={{ text: "Kontakt", href: "#contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|
||||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
||||||
|
|
||||||
export default function GalleryPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="background-highlight"
|
|
||||||
borderRadius="soft"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="mediumLarge"
|
|
||||||
background="floatingGradient"
|
|
||||||
cardStyle="glass-elevated"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="layered"
|
|
||||||
headingFontWeight="semibold"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
brandName="Restauracja Goloneczka"
|
|
||||||
navItems={[
|
|
||||||
{ name: "Menu", id: "/menu" },
|
|
||||||
{ name: "Galeria", id: "/gallery" },
|
|
||||||
{ name: "O nas", id: "/" },
|
|
||||||
{ name: "Kontakt", id: "/" }
|
|
||||||
]}
|
|
||||||
button={{ text: "Zarezerwuj stolik", href: "/#contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="gallery" data-section="gallery">
|
|
||||||
<ProductCardTwo
|
|
||||||
title="Nasza Galeria"
|
|
||||||
description="Zobacz jak wygląda nasza restauracja i nasze pyszne dania."
|
|
||||||
products={[]}
|
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
|
||||||
animationType="blur-reveal"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterLogoReveal
|
|
||||||
logoText="Restauracja Goloneczka"
|
|
||||||
leftLink={{ text: "Polityka prywatności", href: "#" }}
|
|
||||||
rightLink={{ text: "Kontakt", href: "/#contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|
||||||
|
|
||||||
export default function MenuPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="background-highlight"
|
|
||||||
borderRadius="soft"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="mediumLarge"
|
|
||||||
background="floatingGradient"
|
|
||||||
cardStyle="glass-elevated"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="layered"
|
|
||||||
headingFontWeight="semibold"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
brandName="Restauracja Goloneczka"
|
|
||||||
navItems={[
|
|
||||||
{ name: "Menu", id: "/menu" },
|
|
||||||
{ name: "Galeria", id: "/gallery" },
|
|
||||||
{ name: "O nas", id: "/" },
|
|
||||||
{ name: "Kontakt", id: "/" }
|
|
||||||
]}
|
|
||||||
button={{ text: "Zarezerwuj stolik", href: "/#contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="menu" data-section="menu">
|
|
||||||
<ProductCardOne
|
|
||||||
title="Nasze Specjały"
|
|
||||||
description="Odkryj autentyczne polskie smaki w naszych starannie przygotowanych daniach."
|
|
||||||
products={[
|
|
||||||
{ id: "1", name: "Tradycyjna Golonka", price: "58 PLN", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bozbash-soup-with-wooden-spoon-nude-background_140725-134773.jpg" },
|
|
||||||
{ id: "2", name: "Domowe Pierogi z mięsem", price: "32 PLN", imageSrc: "http://img.b2bpic.net/free-photo/gyurza-white-plate-with-sumac-sour-cream_141793-291.jpg" },
|
|
||||||
{ id: "3", name: "Żurek Staropolski", price: "24 PLN", imageSrc: "http://img.b2bpic.net/free-photo/yogurt-dovga-with-greens-inside-round-white-plate-along-with-bread-loafs-eggs-grey-table_140725-15060.jpg" }
|
|
||||||
]}
|
|
||||||
gridVariant="three-columns-all-equal-width"
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterLogoReveal
|
|
||||||
logoText="Restauracja Goloneczka"
|
|
||||||
leftLink={{ text: "Polityka prywatności", href: "#" }}
|
|
||||||
rightLink={{ text: "Kontakt", href: "/#contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -32,10 +32,10 @@ export default function PolishRestaurantPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="Restauracja Goloneczka"
|
brandName="Restauracja Goloneczka"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Menu", id: "/menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "Galeria", id: "/gallery" },
|
|
||||||
{ name: "O nas", id: "about" },
|
{ name: "O nas", id: "about" },
|
||||||
{ name: "Kontakt", id: "contact" }
|
{ name: "Kontakt", id: "contact" },
|
||||||
|
{ name: "Opinie", id: "testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Zarezerwuj stolik", href: "#contact"
|
text: "Zarezerwuj stolik", href: "#contact"
|
||||||
@@ -54,7 +54,7 @@ export default function PolishRestaurantPage() {
|
|||||||
imageAlt="Tradycyjna polska golonka z dodatkami"
|
imageAlt="Tradycyjna polska golonka z dodatkami"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Zarezerwuj stolik", href: "#contact" },
|
{ text: "Zarezerwuj stolik", href: "#contact" },
|
||||||
{ text: "Zobacz menu", href: "/menu" }
|
{ text: "Zobacz menu", href: "#menu" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -69,6 +69,89 @@ export default function PolishRestaurantPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="menu" data-section="menu">
|
||||||
|
<ProductCardOne
|
||||||
|
title="Nasze Specjały"
|
||||||
|
description="Odkryj autentyczne polskie smaki w naszych starannie przygotowanych daniach."
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Tradycyjna Golonka", price: "58 PLN", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bozbash-soup-with-wooden-spoon-nude-background_140725-134773.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "Domowe Pierogi z mięsem", price: "32 PLN", imageSrc: "http://img.b2bpic.net/free-photo/gyurza-white-plate-with-sumac-sour-cream_141793-291.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", name: "Żurek Staropolski", price: "24 PLN", imageSrc: "http://img.b2bpic.net/free-photo/yogurt-dovga-with-greens-inside-round-white-plate-along-with-bread-loafs-eggs-grey-table_140725-15060.jpg"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="impact" data-section="impact">
|
||||||
|
<MetricCardFourteen
|
||||||
|
title="Dlaczego my?"
|
||||||
|
tag="W liczbach"
|
||||||
|
metrics={[
|
||||||
|
{ id: "1", value: "15 lat", description: "Pielęgnowania tradycji polskiego stołu" },
|
||||||
|
{ id: "2", value: "100%", description: "Naturalne składniki od lokalnych dostawców" }
|
||||||
|
]}
|
||||||
|
metricsAnimation="slide-up"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="testimonials" data-section="testimonials">
|
||||||
|
<TestimonialCardFive
|
||||||
|
title="Co mówią nasi goście"
|
||||||
|
description="Zobacz, dlaczego klienci wracają do nas po więcej."
|
||||||
|
testimonials={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Anna Kowalska", date: "12.05.2024", title: "Najlepsza golonka!", quote: "Golonka rozpadła się w ustach. Smakuje dokładnie jak u babci. Bardzo polecam to miejsce!", tag: "Klient", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing_23-2149361254.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "Marek Nowak", date: "20.05.2024", title: "Domowy klimat", quote: "Cudowne miejsce z przepysznym żurkiem. Obsługa przemiła, na pewno wrócimy na obiad.", tag: "Klient", avatarSrc: "http://img.b2bpic.net/free-photo/man-wearing-t-shirt-gesturing_23-2149393359.jpg"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="comparison" data-section="comparison">
|
||||||
|
<FeatureCardTwentyNine
|
||||||
|
title="Jakość bez kompromisów"
|
||||||
|
description="Stawiamy na autentyczność, której nie znajdziesz w sieciowych lokalach."
|
||||||
|
features={[
|
||||||
|
{ title: "Świeże dostawy codziennie", description: "Codziennie rano zaopatrujemy się u zaufanych lokalnych rolników.", imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-with-wicker-basket_1150-13768.jpg", titleIconSrc: "http://img.b2bpic.net/free-icon/check_2311681.png", buttonText: "Dowiedz się więcej" },
|
||||||
|
{ title: "Gotowane na wolnym ogniu", description: "Czas to nasz najważniejszy składnik, pozwalający wydobyć pełnię smaku.", imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-food-in-restaurant-kitchen_1150-35805.jpg", titleIconSrc: "http://img.b2bpic.net/free-icon/pot_2311681.png", buttonText: "Zobacz kuchnię" }
|
||||||
|
]}
|
||||||
|
gridVariant="two-columns-alternating-heights"
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Rezerwacja stolika"
|
||||||
|
description="Wypełnij formularz, aby zapewnić sobie miejsce w naszej restauracji. Skontaktujemy się z Tobą w celu potwierdzenia."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Imię i nazwisko", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "Twój e-mail", required: true },
|
||||||
|
{ name: "phone", type: "tel", placeholder: "Numer telefonu", required: true }
|
||||||
|
]}
|
||||||
|
textarea={{ name: "message", placeholder: "Dodatkowe życzenia?", rows: 3 }}
|
||||||
|
buttonText="Zarezerwuj"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/interior-modern-restaurant-restaurant-hall_1150-14981.jpg"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Restauracja Goloneczka"
|
logoText="Restauracja Goloneczka"
|
||||||
|
|||||||
Reference in New Issue
Block a user