257 lines
14 KiB
TypeScript
257 lines
14 KiB
TypeScript
"use client"
|
||
|
||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||
import { Phone } from 'lucide-react';
|
||
|
||
export default function RestaurantPage() {
|
||
return (
|
||
<ThemeProvider
|
||
defaultButtonVariant="hover-bubble"
|
||
defaultTextAnimation="reveal-blur"
|
||
borderRadius="rounded"
|
||
contentWidth="mediumLarge"
|
||
sizing="mediumSizeLargeTitles"
|
||
background="blurBottom"
|
||
cardStyle="glass-elevated"
|
||
primaryButtonStyle="flat"
|
||
secondaryButtonStyle="solid"
|
||
headingFontWeight="medium"
|
||
>
|
||
<div id="nav" data-section="nav">
|
||
<NavbarStyleCentered
|
||
navItems={[
|
||
{ name: "Meni", id: "menu" },
|
||
{ name: "O Nama", id: "about" },
|
||
{ name: "Galerija", id: "gallery" },
|
||
{ name: "Kontakt", id: "contact" },
|
||
{ name: "Lokacija", id: "location" }
|
||
]}
|
||
button={{ text: "Rezerviši Sto", href: "reservation" }}
|
||
brandName="Restoran Stambolijski"
|
||
/>
|
||
</div>
|
||
|
||
<div id="hero" data-section="hero">
|
||
<HeroOverlay
|
||
title="Najbolji restoran u Nišu – Tradicionalna kuhinja sa modernim dodirom"
|
||
description="Doživite pravu atmosferu stare građanske Srbije kroz vrhunsku kuhinju šefa Saše Mišića."
|
||
tag="Restoran Stambolijski"
|
||
imageSrc="http://img.b2bpic.net/free-photo/bulgur-meat-onions-french-fries-wooden-table_140725-9426.jpg"
|
||
imageAlt="Restoran Stambolijski - tradicionalna srpska kuhinja"
|
||
showBlur={true}
|
||
showDimOverlay={true}
|
||
buttons={[
|
||
{ text: "Rezerviši Sto", href: "reservation" },
|
||
{ text: "Pozovi Sada", href: "tel:+381183000444" }
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="about" data-section="about">
|
||
<InlineImageSplitTextAbout
|
||
heading={[
|
||
{ type: "text", content: "Dovedite od" },
|
||
{ type: "text", content: "tradicije do Vaše mese" }
|
||
]}
|
||
useInvertedBackground={false}
|
||
buttons={[
|
||
{ text: "Saznajte Više", href: "#menu" }
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="menu" data-section="menu">
|
||
<ProductCardFour
|
||
title="Naša Preporučena Jela"
|
||
description="Uživajte u izboru tradicionalnih srpskih specijaliteta koje je pripremio šef kuvar"
|
||
products={[
|
||
{
|
||
id: "cevapi", name: "Ćevapi", price: "450 дин", variant: "Teleća i govedina • 5 kom", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-eats-kebab-lamb-ribs-with-sauce-onions_141793-5188.jpg", imageAlt: "Ćevapi - tradicionalno srpsko jelo"
|
||
},
|
||
{
|
||
id: "karadjordjeva", name: "Karađorđeva Šnicla", price: "520 дин", variant: "Telesina sa šunkom i sirom", imageSrc: "http://img.b2bpic.net/free-photo/baked-casserole-with-sauce-top-sliced-vegetables_141793-16632.jpg", imageAlt: "Karađorđeva šnicla - specijalizovano srpsko jelo"
|
||
},
|
||
{
|
||
id: "corba", name: "Teleća Čorba na Staroplaninski Način", price: "380 дин", variant: "Domaća čorba sa zelenim povrćem", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-meat-with-vegetables-inside-plate-brown-wooden-desk-food-meal-meat_140725-26151.jpg", imageAlt: "Teleća čorba - tradicionalna srpska čorba"
|
||
},
|
||
{
|
||
id: "tri-lece", name: "Tri Leće", price: "280 дин", variant: "Slatkiš od lisnatog testa", imageSrc: "http://img.b2bpic.net/free-photo/triangular-shape-pastry-with-cheese-herbs-fillling_140725-8899.jpg", imageAlt: "Tri leće - tradicionalni srpski slatkiš"
|
||
},
|
||
{
|
||
id: "krempita", name: "Bledska Krempita", price: "320 дин", variant: "Preplanuli sloj sa kremom", imageSrc: "http://img.b2bpic.net/free-photo/honey-cake-decorated-with-figs-berries-lemon-slice-center-dark-table_114579-17260.jpg", imageAlt: "Bledska krempita - poznata deserta"
|
||
}
|
||
]}
|
||
gridVariant="uniform-all-items-equal"
|
||
animationType="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
buttons={[
|
||
{ text: "Pogledaj Kompletan Meni", href: "#" }
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="reviews" data-section="reviews">
|
||
<MetricCardSeven
|
||
title="Gostima se Sviđamo"
|
||
description="Pogledajte šta kažu naši omiljeni gosti o Restoranu Stambolijski"
|
||
metrics={[
|
||
{
|
||
id: "1", value: "4.7★", title: "Ocena od 2900+ Recenzija", items: [
|
||
"Najbolji restoran u Nišu", "Autentična srpska kujna", "Ljubazna služba"
|
||
]
|
||
},
|
||
{
|
||
id: "2", value: "100%", title: "Zadovoljnih Gostiju", items: [
|
||
"Preporučujemo prijateljima", "Vraćamo se redovno", "Najpreciznije serviranje"
|
||
]
|
||
}
|
||
]}
|
||
animationType="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={true}
|
||
/>
|
||
</div>
|
||
|
||
<div id="gallery" data-section="gallery">
|
||
<FeatureCardEight
|
||
title="Galerija"
|
||
description="Istražite lepu atmosferu i autentičnost Restoran Stambolijski"
|
||
features={[
|
||
{
|
||
id: 1,
|
||
title: "Unutrašnjost Restorana", description: "Toplo osvetljeni prostor sa tradicionalnim srpskim dekorom i drvetom", imageSrc: "http://img.b2bpic.net/free-photo/empty-bench-restaurant_23-2147871253.jpg"
|
||
},
|
||
{
|
||
id: 2,
|
||
title: "Terasa na Otvorenom", description: "Uživajte u toplim večerima pod zvezdama na našoj terase", imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3436.jpg"
|
||
},
|
||
{
|
||
id: 3,
|
||
title: "Bar i Pice", description: "Kvalitetni napitci i fine vode u elegantnijoj bar sekciji", imageSrc: "http://img.b2bpic.net/free-photo/woman-ordering-bar_23-2147680670.jpg"
|
||
}
|
||
]}
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
/>
|
||
</div>
|
||
|
||
<div id="testimonials" data-section="testimonials">
|
||
<TestimonialCardSix
|
||
title="Iskustva Naših Gostiju"
|
||
description="Pročitajte realne ocene i iskustva od naših zadovoljnih gostiju"
|
||
testimonials={[
|
||
{
|
||
id: "1", name: "Marko Jovanović", handle: "@markojovan", testimonial: "Odličan restoran sa autentičnom srpskom kuhinjom! Ćevapi su fantastični i služba je odlična.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10540.jpg", imageAlt: "Marko Jovanović"
|
||
},
|
||
{
|
||
id: "2", name: "Jelena Nikolić", handle: "@jelena_nik", testimonial: "Najbolja Karađorđeva šnicla koju sam ikada probala. Šef kuvar je ustvari velik sa taštima.", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-blue-shirt_23-2148095792.jpg", imageAlt: "Jelena Nikolić"
|
||
},
|
||
{
|
||
id: "3", name: "Aleksandar Đorđević", handle: "@aleksandar_d", testimonial: "Atmosfera je nedostižna, hrana je svežа i ukusna. Preporučujem svakome ko dolazi u Niš!", imageSrc: "http://img.b2bpic.net/free-photo/elegance-style-masculinity-concept-attractive-trendy-looking-young-brunette-man-with-bristle-happy-smile-expressing-confidence-posing-isolated-yellow-wall-turning-head-round_343059-4597.jpg", imageAlt: "Aleksandar Đorđević"
|
||
},
|
||
{
|
||
id: "4", name: "Kristina Pavlović", handle: "@kristina_pav", testimonial: "Čorba je greška moga neizvršena - prijatna, topla i pravi recept od bake! Bravo!", imageSrc: "http://img.b2bpic.net/free-photo/young-lady-posing-while-standing-blouse-denim-jacket-looking-pretty-front-view_176474-109186.jpg", imageAlt: "Kristina Pavlović"
|
||
},
|
||
{
|
||
id: "5", name: "Dragan Stanković", handle: "@dragan_s", testimonial: "Resotran sa pravi duš srpske tradicije. Bledska krempita je savršena završnica.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10540.jpg", imageAlt: "Dragan Stanković"
|
||
},
|
||
{
|
||
id: "6", name: "Milica Ilić", handle: "@milica_i", testimonial: "Osvežavajuće iskustvo obeda sa porodicom. Decu je sve veoma svidelo i brzo snimile sliku!", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-blue-shirt_23-2148095792.jpg", imageAlt: "Milica Ilić"
|
||
}
|
||
]}
|
||
textboxLayout="default"
|
||
useInvertedBackground={true}
|
||
animationType="slide-up"
|
||
speed={40}
|
||
/>
|
||
</div>
|
||
|
||
<div id="reservation" data-section="reservation">
|
||
<ContactFaq
|
||
ctaTitle="Rezerviši Sto"
|
||
ctaDescription="Pozovite nas ili popunite formu za rezervaciju. Slobodno dostupan je svaki dan do 00:00."
|
||
ctaButton={{ text: "Pozovi: +381 18 300444", href: "tel:+381183000444" }}
|
||
ctaIcon={Phone}
|
||
faqs={[
|
||
{
|
||
id: "1", title: "Koje su naše radno vreme?", content: "Otvoreni smo svakodnevno od 11:00 do 00:00. Proslavljeni događaji i grup rezervacije mogu biti do 02:00 uz dogovor."
|
||
},
|
||
{
|
||
id: "2", title: "Koliko zauzima vreme da se serviraju jela?", content: "Standardno vreme servira je 20-30 minuta, zavisno od jela. Naši šefovi kuvarova rade sa svežim sastojcima, tako da je vreme vretanja fleksibilno."
|
||
},
|
||
{
|
||
id: "3", title: "Da li ima mogućnosti za privatne događaje?", content: "Da, imamo mogućnost za privatne događaje! Javljanje na +381 18 300444 ili dolazak u restoran direktno za detaljne informacije."
|
||
},
|
||
{
|
||
id: "4", title: "Da li primeni preporuke za alergije?", content: "Apsolutno! Naš tim je obučen za baratanje sa sveima alergirama. Molimo vas da nas obavesite o bilo kojoj alergiji prilikom poređenja."
|
||
}
|
||
]}
|
||
useInvertedBackground={false}
|
||
animationType="slide-up"
|
||
accordionAnimationType="smooth"
|
||
/>
|
||
</div>
|
||
|
||
<div id="location" data-section="location">
|
||
<FaqBase
|
||
title="Lokacija i Kontakt"
|
||
description="Posjetite nas na našoj adresi ili kontaktirajte nas za bilo šta pitanja"
|
||
faqs={[
|
||
{
|
||
id: "1", title: "📍 Gde se nalazi Restoran Stambolijski?", content: "<strong>Adresa:</strong> Nikole Pašića 36, Niš 18000, Srbija<br><strong>Telefon:</strong> +381 18 300444<br><strong>Email:</strong> info@stambolijski.rs"
|
||
},
|
||
{
|
||
id: "2", title: "🚗 Kako doći do restorana?", content: "Restoran Stambolijski je lociran u centru Niša, u blizini glavnih turističkih atrakacija. Parking je dostupan blizu restorana. Google Mape link: <a href='https://maps.google.com' target='_blank'>Pogledaj na Mapi</a>"
|
||
},
|
||
{
|
||
id: "3", title: "🕐 Radno vreme", content: "<strong>Ponedjeljak - Nedelja:</strong> 11:00 - 00:00<br><strong>Praznični dani:</strong> 12:00 - 00:00<br>Otvoreni smo svakodnevno!"
|
||
}
|
||
]}
|
||
faqsAnimation="slide-up"
|
||
textboxLayout="default"
|
||
useInvertedBackground={true}
|
||
/>
|
||
</div>
|
||
|
||
<div id="footer" data-section="footer">
|
||
<FooterLogoEmphasis
|
||
logoText="Restoran Stambolijski"
|
||
columns={[
|
||
{
|
||
items: [
|
||
{ label: "Meni", href: "#menu" },
|
||
{ label: "Galerija", href: "#gallery" },
|
||
{ label: "Kontakt", href: "#contact" }
|
||
]
|
||
},
|
||
{
|
||
items: [
|
||
{ label: "O Nama", href: "#about" },
|
||
{ label: "Rezervacija", href: "#reservation" },
|
||
{ label: "Lokacija", href: "#location" }
|
||
]
|
||
},
|
||
{
|
||
items: [
|
||
{ label: "Pozovi Nas", href: "tel:+381183000444" },
|
||
{ label: "Instagram", href: "https://instagram.com" },
|
||
{ label: "Facebook", href: "https://facebook.com" }
|
||
]
|
||
}
|
||
]}
|
||
/>
|
||
</div>
|
||
</ThemeProvider>
|
||
);
|
||
} |