Update src/app/page.tsx

This commit is contained in:
2026-01-12 13:05:05 +00:00
parent 03fcf92458
commit dc0d03c228

View File

@@ -172,14 +172,14 @@ 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={[
{
label: "Full Name", type: "text", placeholder: "Your name", required: true
id: "name", label: "Full Name", type: "text", placeholder: "Your name", required: true
},
{
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={{
label: "Message", placeholder: "Tell us about your interest in Ukrainian art or how we can help", required: true
id: "message", label: "Message", placeholder: "Tell us about your interest in Ukrainian art or how we can help", required: true
}}
buttonText="Send Inquiry"
useInvertedBackground="invertDefault"
@@ -220,10 +220,6 @@ 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"
@@ -235,6 +231,10 @@ 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() {
</div>
</ThemeProvider>
);
}
}