From 023bbe0f9d64a41bf8cb2817d38bec565ef58874 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 12 Jan 2026 13:08:13 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8ffb1cf..7e6e9db 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactCenterForm from '@/components/sections/contact/ContactCenterForm'; import FooterSocial from '@/components/sections/footer/FooterSocial'; -import { Facebook, Image, Instagram, Palette, Star, Twitter, Users } from "lucide-react"; +import { Palette, Image, Users, Star, Instagram, Facebook, Twitter, Linkedin } from "lucide-react"; export default function LandingPage() { return ( @@ -66,7 +66,7 @@ export default function LandingPage() { { label: "Featured Artists", value: "120+" }, { label: "Artworks Available", value: "850+" } ]} - useInvertedBackground="noInvert" + useInvertedBackground="invertDefault" /> @@ -80,7 +80,7 @@ export default function LandingPage() { { text: "Explore Full Gallery", href: "#collections" } ]} textboxLayout="default" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" animationType="slide-up" gridVariant="three-columns-all-equal-width" products={[ @@ -104,15 +104,15 @@ export default function LandingPage() { tag="Creative Voices" tagIcon={Users} textboxLayout="default" - useInvertedBackground="noInvert" + useInvertedBackground="invertDefault" animationType="slide-up" gridVariant="three-columns-all-equal-width" members={[ { - id: "artist-1", name: "Olena Kozak", role: "Contemporary Painter", imageSrc: "https://img.b2bpic.net/free-photo/blond-man-draws-painting-with-oils_8353-10784.jpg", imageAlt: "Portrait of artist Olena Kozak" + id: "artist-1", name: "Olena Kozak", role: "Contemporary Painter", imageSrc: "https://img.b2bpic.net/free-photo/van-gogh-portrait_23-2149737812.jpg", imageAlt: "Portrait of artist Olena Kozak" }, { - id: "artist-2", name: "Dmytro Markov", role: "Fine Art Photographer", imageSrc: "https://img.b2bpic.net/free-photo/van-gogh-portrait_23-2149737812.jpg", imageAlt: "Portrait of photographer Dmytro Markov" + id: "artist-2", name: "Dmytro Markov", role: "Fine Art Photographer", imageSrc: "https://img.b2bpic.net/free-photo/blond-man-draws-painting-with-oils_8353-10784.jpg", imageAlt: "Portrait of photographer Dmytro Markov" }, { id: "artist-3", name: "Yana Volkova", role: "Sculptor & Installation Artist", imageSrc: "https://img.b2bpic.net/free-photo/male-painter-studio-using-watercolor-his-art_23-2150213710.jpg", imageAlt: "Portrait of artist Yana Volkova" @@ -134,7 +134,7 @@ export default function LandingPage() { tag="Client Stories" tagIcon={Star} textboxLayout="default" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" animationType="slide-up" gridVariant="three-columns-all-equal-width" testimonials={[ @@ -172,17 +172,17 @@ 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: "fullname", 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="noInvert" + useInvertedBackground="invertDefault" /> @@ -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" @@ -238,4 +242,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}