From 83d6aebe3cc6e9685c40fa1925d4309e016d17b8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:10:50 +0000 Subject: [PATCH 1/4] Update src/app/cenik/page.tsx --- src/app/cenik/page.tsx | 120 ++++++++++++++++++++++++----------------- 1 file changed, 71 insertions(+), 49 deletions(-) diff --git a/src/app/cenik/page.tsx b/src/app/cenik/page.tsx index 03623e7..64f5c77 100644 --- a/src/app/cenik/page.tsx +++ b/src/app/cenik/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; +import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; import SplitAbout from "@/components/sections/about/SplitAbout"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterMedia from "@/components/sections/footer/FooterMedia"; @@ -12,16 +12,15 @@ import { CheckCircle, Phone, MessageSquare, MapPin } from "lucide-react"; export default function PricingPage() { const navItems = [ { name: "Domů", id: "/" }, - { name: "Služby", id: "services" }, - { name: "Ceník", id: "pricing" }, + { name: "Služby", id: "/sluzby" }, + { name: "Ceník", id: "/cenik" }, { name: "Reference", id: "testimonials" }, - { name: "Kontakt", id: "contact" }, + { name: "Kontakt", id: "/kontakt" }, ]; const footerColumns = [ { - title: "Služby", - items: [ + title: "Služby", items: [ { label: "Odhad pro hypotéku", href: "/" }, { label: "Odhad pro prodej", href: "/" }, { label: "Odhad pro dědictví", href: "/" }, @@ -29,8 +28,7 @@ export default function PricingPage() { ], }, { - title: "Společnost", - items: [ + title: "Společnost", items: [ { label: "O mně", href: "/o-mne" }, { label: "Reference", href: "#testimonials" }, { label: "Ceník", href: "/cenik" }, @@ -38,12 +36,11 @@ export default function PricingPage() { ], }, { - title: "Kontakt", - items: [ + title: "Kontakt", items: [ { label: "Telefonicky", href: "tel:+420XXXXXXXXX" }, { label: "Email", href: "mailto:info@odhady-nozicka.cz" }, { label: "Mapa", href: "#" }, - { label: "Poptávka", href: "/cenik" }, + { label: "Poptávka", href: "/kontakt" }, ], }, ]; @@ -71,41 +68,80 @@ export default function PricingPage() {
-
+
+
+
+
+

+ Kombinované nemovitosti a více nemovitostí +

+

+ Odhady kombinovaných nemovitostí (např. byt se zahradou, pozemek s chybějícím domem) a odhady více nemovitostí jsou oceňovány individuálně. +

+

+ Prosím kontaktujte nás pro přesné stanovení ceny vaší konkrétní situace. Rádi vám poskytneme nezávaznou nabídku. +

+
+
+
+
+
Date: Tue, 10 Mar 2026 20:10:50 +0000 Subject: [PATCH 2/4] Update src/app/kontakt/page.tsx --- src/app/kontakt/page.tsx | 64 +++++++++++++++++++++++++--------------- 1 file changed, 40 insertions(+), 24 deletions(-) diff --git a/src/app/kontakt/page.tsx b/src/app/kontakt/page.tsx index 4530728..2dd907f 100644 --- a/src/app/kontakt/page.tsx +++ b/src/app/kontakt/page.tsx @@ -1,24 +1,23 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { MessageSquare, Phone, Mail } from 'lucide-react'; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { MessageSquare, Phone, Mail } from "lucide-react"; export default function KontaktPage() { const navItems = [ { name: "Domů", id: "/" }, - { name: "Služby", id: "#services" }, - { name: "Ceník", id: "#pricing" }, - { name: "Reference", id: "#testimonials" }, + { name: "Služby", id: "/sluzby" }, + { name: "Ceník", id: "/cenik" }, + { name: "Reference", id: "testimonials" }, { name: "Kontakt", id: "/kontakt" }, ]; const footerColumns = [ { - title: "Služby", - items: [ + title: "Služby", items: [ { label: "Odhad pro hypotéku", href: "#services" }, { label: "Odhad pro prodej", href: "#services" }, { label: "Odhad pro dědictví", href: "#services" }, @@ -26,17 +25,15 @@ export default function KontaktPage() { ], }, { - title: "Společnost", - items: [ - { label: "O mně", href: "/" }, + title: "Společnost", items: [ + { label: "O mně", href: "/o-mne" }, { label: "Reference", href: "#testimonials" }, - { label: "Ceník", href: "/" }, + { label: "Ceník", href: "/cenik" }, { label: "Blog", href: "#" }, ], }, { - title: "Kontakt", - items: [ + title: "Kontakt", items: [ { label: "Telefonicky", href: "tel:+420XXXXXXXXX" }, { label: "Email", href: "mailto:info@odhady-nozicka.cz" }, { label: "Mapa", href: "#" }, @@ -99,7 +96,10 @@ export default function KontaktPage() {
-
-