From 0da970583877319ca07b580f2b15774545da1985 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:43:21 +0000 Subject: [PATCH 1/5] Add src/app/accommodation/page.tsx --- src/app/accommodation/page.tsx | 152 +++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 src/app/accommodation/page.tsx diff --git a/src/app/accommodation/page.tsx b/src/app/accommodation/page.tsx new file mode 100644 index 0000000..ccb4389 --- /dev/null +++ b/src/app/accommodation/page.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { MapPin } from "lucide-react"; + +export default function AccommodationPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 46ac795b1a96e0638eea539f25a8c88cba062f4a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:43:21 +0000 Subject: [PATCH 2/5] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 155 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..f234feb --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,155 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Phone } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 8caa1a2a5dc5a8b0ffee206c3cb690be4fa6a466 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:43:21 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 1423 +------------------------------------------- 1 file changed, 25 insertions(+), 1398 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 604420e..534d9b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,30 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Reštaurácia a penzión pod vlekom - Prakovce", description: "Autentická reštaurácia so slovenským jedlom a pohodlným penziónom v Prakovciach. Ideálne pre turistov a rodiny. Rezervujte stôl alebo izbu teraz.", keywords: "reštaurácia Prakovce, penzión Prakovce, slovenské jedlo, ubytovanie, pizza, tradicionalná kuchyňa", openGraph: { - title: "Reštaurácia a penzión pod vlekom", description: "Tradičné slovenské jedlo a pohodlné ubytovanie v srdci Prakoviec", url: "https://podvlekom.sk", siteName: "Pod vlekom", type: "website"}, - twitter: { - card: "summary_large_image", title: "Reštaurácia a penzión pod vlekom", description: "Autentické slovenské jedlo, penzión a horská atmosféra"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Pod vlekom - Reštaurácia a Penzión", description: "Tradičná slovenská reštaurácia a penzión v Prakovciach. Autentické jedlo, pohostinný penzión a horská atmosféra."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + {children} - -