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 +}