Merge version_1_1782384493993 into main #1

Merged
bender merged 2 commits from version_1_1782384493993 into main 2026-06-25 10:49:27 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Expertise",
"href": "#expertise"
"name": "Expertise", "href": "#expertise"
},
{
"name": "Properties",
"href": "#properties"
"name": "Properties", "href": "#properties"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Partners",
"href": "#partners"
"name": "Partners", "href": "#partners"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Ing. Tomáš Kocman"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=snc191"
ctaButton={{
text: "Start Consultation",
href: "#contact",
}}
text: "Start Consultation", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,59 +49,38 @@ export default function Layout() {
brand="Ing. Tomáš Kocman - RE/MAX Synergy"
columns={[
{
title: "Služby",
items: [
title: "Služby", items: [
{
label: "Prodej nemovitostí",
href: "#properties",
},
label: "Prodej nemovitostí", href: "#properties"},
{
label: "Nákup nemovitostí",
href: "#properties",
},
label: "Nákup nemovitostí", href: "#properties"},
{
label: "Pronájmy",
href: "#properties",
},
label: "Pronájmy", href: "#properties"},
],
},
{
title: "O mně",
items: [
title: "O mně", items: [
{
label: "Profil makléře",
href: "#expertise",
},
label: "Profil makléře", href: "#expertise"},
{
label: "Reference",
href: "#testimonials",
},
label: "Reference", href: "#testimonials"},
],
},
{
title: "Kontakt",
items: [
title: "Kontakt", items: [
{
label: "Email",
href: "mailto:tomas.kocman@remax.cz",
},
label: "Email", href: "mailto:tomas.kocman@remax.cz"},
{
label: "Telefon",
href: "tel:+420123456789",
},
label: "Telefon", href: "tel:+420123456789"},
],
},
]}
copyright="© 2024 Ing. Tomáš Kocman, RE/MAX Synergy. Všechna práva vyhrazena."
links={[
{
label: "GDPR",
href: "#",
},
label: "GDPR", href: "#"},
{
label: "Obchodní podmínky",
href: "#",
},
label: "Obchodní podmínky", href: "#"},
]}
/>
</SectionErrorBoundary>