3 Commits

Author SHA1 Message Date
b9132eac9d Update src/app/contact/page.tsx 2026-06-10 19:27:15 +00:00
795aed6bad Update src/app/about/page.tsx 2026-06-10 19:27:14 +00:00
22c757d508 Merge version_11 into main
Merge version_11 into main
2026-06-10 19:19:32 +00:00
2 changed files with 12 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ export default function AboutPage() {
navItems={[ navItems={[
{ name: "Domov", id: "/" }, { name: "Domov", id: "/" },
{ name: "Práca", id: "/#work" }, { name: "Práca", id: "/#work" },
{ name: "Služby", id: "/#services" }, { name: "Služby", id: "/services" },
{ name: "O nás", id: "/about" }, { name: "O nás", id: "/about" },
{ name: "Kontakt", id: "/contact" } { name: "Kontakt", id: "/contact" }
]} ]}
@@ -68,17 +68,17 @@ export default function AboutPage() {
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Services", href: "/#services" }, { label: "Services", href: "/services" },
{ label: "Work", href: "/#work" }, { label: "Work", href: "/#work" },
{ label: "Contact", href: "/contact" }, { label: "Contact", href: "/contact" },
], ],
}, },
{ {
title: "Services", items: [ title: "Services", items: [
{ label: "Web Development", href: "/#" }, { label: "Web Development", href: "/services" },
{ label: "SEO", href: "/#" }, { label: "SEO", href: "/services" },
{ label: "Branding", href: "/#" }, { label: "Branding", href: "/services" },
{ label: "UI/UX Design", href: "/#" }, { label: "UI/UX Design", href: "/services" },
], ],
}, },
{ {

View File

@@ -27,7 +27,7 @@ export default function ContactPage() {
navItems={[ navItems={[
{ name: "Domov", id: "/" }, { name: "Domov", id: "/" },
{ name: "Práca", id: "/#work" }, { name: "Práca", id: "/#work" },
{ name: "Služby", id: "/#services" }, { name: "Služby", id: "/services" },
{ name: "O nás", id: "/about" }, { name: "O nás", id: "/about" },
{ name: "Kontakt", id: "/contact" } { name: "Kontakt", id: "/contact" }
]} ]}
@@ -81,17 +81,17 @@ export default function ContactPage() {
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Services", href: "/#services" }, { label: "Services", href: "/services" },
{ label: "Work", href: "/#work" }, { label: "Work", href: "/#work" },
{ label: "Contact", href: "/contact" }, { label: "Contact", href: "/contact" },
], ],
}, },
{ {
title: "Services", items: [ title: "Services", items: [
{ label: "Web Development", href: "/#" }, { label: "Web Development", href: "/services" },
{ label: "SEO", href: "/#" }, { label: "SEO", href: "/services" },
{ label: "Branding", href: "/#" }, { label: "Branding", href: "/services" },
{ label: "UI/UX Design", href: "/#" }, { label: "UI/UX Design", href: "/services" },
], ],
}, },
{ {