From 4994cb3860795d712b07825c71e0baf499ff2cb8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 21:39:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fdd651a..6e80765 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Cormorant_Garamond, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Apartamenty Kapitańskie - Luksusowy Wypoczynek', - description: 'Luksusowe apartamenty z duszą w sercu natury. Cicho, pięknie, niezapomniane chwile dla Ciebie i Twojej rodziny.', + title: 'Apartamenty Kapitańskie | Luksusowe Apartamenty', + description: 'Luksusowe apartamenty w sercu natury. Poczuj elegancję i spokój w Apartamentach Kapitańskich.', openGraph: { "title": "Apartamenty Kapitańskie", "siteName": "Apartamenty Kapitańskie", -- 2.49.1 From 258ca00421dddb88a871e1c7b679e00029b77afd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 21:39:59 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 448 +++++++++++++---------------------------------- 1 file changed, 124 insertions(+), 324 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 183622f..c9afec5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,337 +1,137 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Car, MapPin, Star } from "lucide-react"; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Star, MapPin, Car } from 'lucide-react'; + +export default function HomePage() { + const navItems = [{ name: "Home", id: "#hero" }, { name: "Pokoje", id: "#rooms" }, { name: "O nas", id: "#about" }, { name: "Rezerwacja", id: "#contact" }]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } -- 2.49.1