Update src/app/contact/page.tsx
This commit is contained in:
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -24,13 +59,7 @@ export default function ContactPage() {
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Grow With Social"
|
||||
navItems={[
|
||||
{ name: "Domov", id: "/" },
|
||||
{ name: "Práca", id: "/#work" },
|
||||
{ name: "Služby", id: "/services" },
|
||||
{ name: "O nás", id: "/about" },
|
||||
{ name: "Kontakt", id: "/contact" }
|
||||
]}
|
||||
navItems={commonNavItems}
|
||||
/>
|
||||
|
||||
<ContactSplitForm
|
||||
@@ -77,34 +106,9 @@ export default function ContactPage() {
|
||||
<FooterBase
|
||||
logoText="Grow With Social"
|
||||
copyrightText="© 2026 | Grow With Social"
|
||||
columns={[
|
||||
{
|
||||
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: "/#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={commonFooterColumnsEnglish}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user