From db4ad2d54b719523d20a0850e0175d5ffc37d6ee Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 19:40:03 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 72 +++++++++++++++++++++------------------- 1 file changed, 38 insertions(+), 34 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2de684a..58e650f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,6 +8,41 @@ import FooterBase from "@/components/sections/footer/FooterBase"; import { Mail, Phone, Instagram } from "lucide-react"; // Import Lucide icons export default function ContactPage() { + const commonNavItems = [ + { name: "Domov", id: "/" }, + { name: "Práca", id: "/#work" }, + { name: "Služby", id: "/services" }, + { name: "O nás", id: "/about" }, + { name: "Kontakt", id: "/contact" } + ]; + + const commonFooterColumnsEnglish = [ + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Services", href: "/services" }, + { label: "Work", href: "/#work" }, + { label: "Contact", href: "/contact" } + ] + }, + { + title: "Services", items: [ + { label: "Web Development", href: "/services" }, + { label: "SEO", href: "/services" }, + { label: "Branding", href: "/services" }, + { label: "UI/UX Design", href: "/services" } + ] + }, + { + title: "Connect", items: [ + { label: "Twitter", href: "/#" }, + { label: "LinkedIn", href: "/#" }, + { label: "Instagram", href: "/#" }, + { label: "Dribbble", href: "/#" } + ] + } + ]; + return ( ); -} \ No newline at end of file +}