Merge version_3 into main #6

Merged
bender merged 2 commits from version_3 into main 2026-03-03 17:39:40 +00:00
2 changed files with 7 additions and 36 deletions

View File

@@ -1,48 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
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"],
});
const inter = Inter({ subsets: ["latin"] });
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"),
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ú."},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="sk" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
imageAlt="El Paso Pub Interior"
mediaAnimation="slide-up"
buttons={[
{ text: "Zobraziť Menu", href: "#menu" },
{ text: "Zobraziť Menu & Rezervovať", href: "#menu" },
{ text: "Rezervovať Stôl", href: "#reservation" },
]}
buttonAnimation="slide-up"