From ae2b080641cac47e2f97fb5aeafcd8ca8a7954a6 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 12 Jan 2026 13:02:13 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1ebe5f2..2fd2ad2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -172,10 +172,10 @@ export default function LandingPage() { description="Have questions about our artworks or want to collaborate? We'd love to hear from you. Connect with our team for inquiries, commissions, or partnership opportunities." inputs={[ { - id: "fullName", label: "Full Name", type: "text", placeholder: "Your name", required: true + id: "name", label: "Full Name", type: "text", placeholder: "Your name", required: true }, { - id: "emailAddress", label: "Email Address", type: "email", placeholder: "your@email.com", required: true + id: "email", label: "Email Address", type: "email", placeholder: "your@email.com", required: true } ]} textarea={{ @@ -220,6 +220,10 @@ export default function LandingPage() { } ]} socialLinks={[ + { + icon: Linkedin, + href: "https://linkedin.com", ariaLabel: "Connect with us on LinkedIn" + }, { icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" @@ -231,10 +235,6 @@ export default function LandingPage() { { icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" - }, - { - icon: Linkedin, - href: "https://linkedin.com", ariaLabel: "Follow us on LinkedIn" } ]} copyrightText="© 2025 Ukrainian Art Gallery. Celebrating the soul of Ukraine through contemporary and traditional art." @@ -242,4 +242,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}