Update src/app/contact/page.tsx

This commit is contained in:
2026-06-10 19:40:03 +00:00
parent 4e20e5b519
commit db4ad2d54b

View File

@@ -8,6 +8,41 @@ import FooterBase from "@/components/sections/footer/FooterBase";
import { Mail, Phone, Instagram } from "lucide-react"; // Import Lucide icons import { Mail, Phone, Instagram } from "lucide-react"; // Import Lucide icons
export default function ContactPage() { 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 ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -24,13 +59,7 @@ export default function ContactPage() {
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="Grow With Social" brandName="Grow With Social"
navItems={[ navItems={commonNavItems}
{ name: "Domov", id: "/" },
{ name: "Práca", id: "/#work" },
{ name: "Služby", id: "/services" },
{ name: "O nás", id: "/about" },
{ name: "Kontakt", id: "/contact" }
]}
/> />
<ContactSplitForm <ContactSplitForm
@@ -77,32 +106,7 @@ export default function ContactPage() {
<FooterBase <FooterBase
logoText="Grow With Social" logoText="Grow With Social"
copyrightText="© 2026 | Grow With Social" copyrightText="© 2026 | Grow With Social"
columns={[ columns={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: "/#" },
],
},
]}
/> />
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>