Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6dbae9465c | |||
| 9f14b8c80f | |||
| 206015b7c9 | |||
| 6037ccf3e3 | |||
| 6a3cece6a0 | |||
| 21124504f6 | |||
| c8826fe08d | |||
| 3d41237755 |
@@ -1,48 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Nunito_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
|
||||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "El Paso Pub – Nové Mesto nad Váhom | Steaky & Pivo", description: "Objavte El Paso Pub – mestný pub s tradičnou slovenskou kuchyňou, kvalitnými steakmi, poctivým pivom a priateľskou atmosférou v Novom Meste nad Váhom.", keywords: "pub Nové Mesto nad Váhom, reštaurácia, steaky, pivo, slovenská kuchyňa, rezervácia", metadataBase: new URL("https://elpasopub.sk"),
|
title: "El Paso Pub - Tradičná Slovenská Kuchyňa", description: "El Paso Pub v Novom Meste nad Váhom. Tradičná slovenská kuchyňa, kvalitné steaky, poctivé pivo a priateľská atmosféra."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://elpasopub.sk"},
|
|
||||||
openGraph: {
|
|
||||||
title: "El Paso Pub – Steaky & Pivo", description: "Tradičná slovenská kuchyňa a kvalitné nápoje čakajú.", url: "https://elpasopub.sk", siteName: "El Paso Pub", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "El Paso Pub – Mestný Pub s Tradíciou", description: "Tradičná slovenská kuchyňa a kvalitné nápoje čakajú."},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="sk" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||||
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import { Beer, Soup, Zap, Flame, Heart, Utensils } from "lucide-react";
|
import { Beer, Soup, Zap, Flame, Heart, Utensils } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -35,7 +35,8 @@ export default function LandingPage() {
|
|||||||
{ name: "Kontakt", id: "reservation" },
|
{ name: "Kontakt", id: "reservation" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Rezervovať stôl", href: "#reservation"}}
|
text: "Rezervovať stôl", href: "#reservation"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -49,20 +50,24 @@ export default function LandingPage() {
|
|||||||
imageAlt="El Paso Pub Interior"
|
imageAlt="El Paso Pub Interior"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Zobraziť Menu", href: "#menu" },
|
{ text: "Zobraziť Menu & Rezervovať", href: "#menu" },
|
||||||
{ text: "Rezervovať Stôl", href: "#reservation" },
|
{ text: "Rezervovať Stôl", href: "#reservation" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Ján Novák", handle: "Návštevník", testimonial: "Najlepšie steaky v meste! Kvalitné pivo a príjemná atmosféra. Určite sa vrátim.", rating: 5,
|
name: "Ján Novák", handle: "Návštevník", testimonial: "Najlepšie steaky v meste! Kvalitné pivo a príjemná atmosféra. Určite sa vrátim.", rating: 5,
|
||||||
imageSrc: "/placeholders/placeholder1.webp?_wi=1"},
|
imageSrc: "/placeholders/placeholder1.webp?_wi=1"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Mária Kováčová", handle: "Zákazníčka", testimonial: "Skvelá kuchyňa, poctivé porcie a starostlivý personál. El Paso je naša oblúbená hospoda!", rating: 5,
|
name: "Mária Kováčová", handle: "Zákazníčka", testimonial: "Skvelá kuchyňa, poctivé porcie a starostlivý personál. El Paso je naša oblúbená hospoda!", rating: 5,
|
||||||
imageSrc: "/placeholders/placeholder1.webp?_wi=2"},
|
imageSrc: "/placeholders/placeholder1.webp?_wi=2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Peter Čech", handle: "Pravidelný Hosť", testimonial: "Perfektné na stretnutia s priateľmi, sledovanie zápasov a večer pri dobrom pive.", rating: 5,
|
name: "Peter Čech", handle: "Pravidelný Hosť", testimonial: "Perfektné na stretnutia s priateľmi, sledovanie zápasov a večer pri dobrom pive.", rating: 5,
|
||||||
imageSrc: "/placeholders/placeholder1.webp?_wi=3"},
|
imageSrc: "/placeholders/placeholder1.webp?_wi=3"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
testimonialRotationInterval={5000}
|
testimonialRotationInterval={5000}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -91,22 +96,28 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Soup,
|
icon: Soup,
|
||||||
title: "Polievky", description: "Slepačí vývar, cesnačka so syrom, držková a ďalšie domáce recepty od 2,50 €"},
|
title: "Polievky", description: "Slepačí vývar, cesnačka so syrom, držková a ďalšie domáce recepty od 2,50 €"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "Kuracie Mäso", description: "Kurací steak s chilli omáčkou, prírodný rezeň, Cordon Bleu a ďalšie od 6,90 €"},
|
title: "Kuracie Mäso", description: "Kurací steak s chilli omáčkou, prírodný rezeň, Cordon Bleu a ďalšie od 6,90 €"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Flame,
|
icon: Flame,
|
||||||
title: "Bravčové Špeciality", description: "Medailónky na dubákovej omáčke, Cordon Bleu, vyprážané rezne od 6,90 €"},
|
title: "Bravčové Špeciality", description: "Medailónky na dubákovej omáčke, Cordon Bleu, vyprážané rezne od 6,90 €"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
title: "Hovädzie Mäso", description: "Hovädzí steak a tatársky biftek – premium kvalita od 15,90 €"},
|
title: "Hovädzie Mäso", description: "Hovädzí steak a tatársky biftek – premium kvalita od 15,90 €"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Utensils,
|
icon: Utensils,
|
||||||
title: "Cestoviny", description: "Penne Carbonara, s kuracím mäsom, s nivovou omáčkou od 7,90 €"},
|
title: "Cestoviny", description: "Penne Carbonara, s kuracím mäsom, s nivovou omáčkou od 7,90 €"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
title: "Špeciality", description: "Bryndzové halušky, hovädzí guláš, mexické fazule od 7,40 €"},
|
title: "Špeciality", description: "Bryndzové halušky, hovädzí guláš, mexické fazule od 7,40 €"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -121,17 +132,23 @@ export default function LandingPage() {
|
|||||||
tag="Osvieženie a Rozmazlenie"
|
tag="Osvieženie a Rozmazlenie"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Svetlé Pivo 0,5l", price: "2,80 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=1", imageAlt: "Svetlé pivo"},
|
id: "1", name: "Svetlé Pivo 0,5l", price: "2,80 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=1", imageAlt: "Svetlé pivo"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Tmavé Pivo 0,5l", price: "2,80 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=2", imageAlt: "Tmavé pivo"},
|
id: "2", name: "Tmavé Pivo 0,5l", price: "2,80 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=2", imageAlt: "Tmavé pivo"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Cuba Libre", price: "5,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=3", imageAlt: "Cuba Libre"},
|
id: "3", name: "Cuba Libre", price: "5,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=3", imageAlt: "Cuba Libre"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Gin & Tonic", price: "5,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=4", imageAlt: "Gin & Tonic"},
|
id: "4", name: "Gin & Tonic", price: "5,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=4", imageAlt: "Gin & Tonic"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Mojito", price: "6,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=5", imageAlt: "Mojito"},
|
id: "5", name: "Mojito", price: "6,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=5", imageAlt: "Mojito"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "Cappuccino", price: "2,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=6", imageAlt: "Cappuccino"},
|
id: "6", name: "Cappuccino", price: "2,50 €", imageSrc: "http://img.b2bpic.net/free-photo/glasses-cold-fresh-white-light-beer_171337-13678.jpg?_wi=6", imageAlt: "Cappuccino"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -147,11 +164,14 @@ export default function LandingPage() {
|
|||||||
tag="Sme Tu Pre Vás"
|
tag="Sme Tu Pre Vás"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "Po–Ut", title: "Pracovné Dni", description: "10:00 – 21:00 vždy na vás čakáme", imageSrc: "http://img.b2bpic.net/free-photo/restaurant_23-2148015001.jpg?_wi=2", imageAlt: "El Paso Pub Interior"},
|
id: "1", value: "Po–Ut", title: "Pracovné Dni", description: "10:00 – 21:00 vždy na vás čakáme", imageSrc: "http://img.b2bpic.net/free-photo/restaurant_23-2148015001.jpg?_wi=2", imageAlt: "El Paso Pub Interior"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "St–Pia", title: "Predĺžené Otváracie Hodiny", description: "Streda–štvrtok do 23:00, piatok do 01:00", imageSrc: "http://img.b2bpic.net/free-photo/man-chef-cooking-asian-chicken-cafe-kitchen_1303-32155.jpg", imageAlt: "Kitchen Chef"},
|
id: "2", value: "St–Pia", title: "Predĺžené Otváracie Hodiny", description: "Streda–štvrtok do 23:00, piatok do 01:00", imageSrc: "http://img.b2bpic.net/free-photo/man-chef-cooking-asian-chicken-cafe-kitchen_1303-32155.jpg", imageAlt: "Kitchen Chef"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", value: "So–Ne", title: "Víkend", description: "Sobota 11:00–01:00, nedeľa 11:00–21:00", imageSrc: "http://img.b2bpic.net/free-photo/closeup-food-styling-steak-rustic-style_53876-42887.jpg", imageAlt: "Steak"},
|
id: "3", value: "So–Ne", title: "Víkend", description: "Sobota 11:00–01:00, nedeľa 11:00–21:00", imageSrc: "http://img.b2bpic.net/free-photo/closeup-food-styling-steak-rustic-style_53876-42887.jpg", imageAlt: "Steak"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user