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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
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}
-
-