Update src/app/about/page.tsx

This commit is contained in:
2026-06-10 19:27:14 +00:00
parent 22c757d508
commit 795aed6bad

View File

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