diff --git a/src/app/globals.css b/src/app/globals.css index c16e556..a6ab759 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,8 +4,8 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #fffafa;; - --card: #fff7f7;; + --background: #808080;; + --card: #808080;; --foreground: #1a0000;; --primary-cta: #e63946;; --secondary-cta: #ffffff;; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 95b89f5..cd3286e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1263,4 +1263,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 1152094..56684dc 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 { Palette, Image, Users, Star, Instagram, Facebook, Twitter } from "lucide-react"; +import { Palette, Image, Users, Star, Instagram, Facebook, Twitter, Linkedin } from "lucide-react"; export default function LandingPage() { return ( @@ -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" @@ -231,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." @@ -238,4 +242,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}