Update src/app/contact/page.tsx

This commit is contained in:
2026-06-10 19:27:15 +00:00
parent 795aed6bad
commit b9132eac9d

View File

@@ -27,7 +27,7 @@ export default function ContactPage() {
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" }
]}
@@ -81,17 +81,17 @@ export default function ContactPage() {
{
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" },
],
},
{