3 Commits

Author SHA1 Message Date
7012c2945b Update src/app/page.tsx 2026-01-12 12:49:20 +00:00
7f835d8882 Update src/app/page.tsx 2026-01-12 12:47:09 +00:00
1855f4bf0b Update src/app/page.tsx 2026-01-12 12:44:50 +00:00
2 changed files with 9 additions and 13 deletions

View File

@@ -1263,4 +1263,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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, Linkedin } from "lucide-react";
import { Palette, Image, Users, Star, Instagram, Facebook, Twitter } 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="invertDefault"
useInvertedBackground="noInvert"
/>
</div>
@@ -104,7 +104,7 @@ export default function LandingPage() {
tag="Creative Voices"
tagIcon={Users}
textboxLayout="default"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
members={[
@@ -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={[
{
id: "fullname", label: "Full Name", type: "text", placeholder: "Your name", required: true
label: "Full Name", type: "text", placeholder: "Your name", required: true
},
{
id: "email", label: "Email Address", type: "email", placeholder: "your@email.com", required: true
label: "Email Address", type: "email", placeholder: "your@email.com", required: true
}
]}
textarea={{
id: "message", label: "Message", placeholder: "Tell us about your interest in Ukrainian art or how we can help", required: true
label: "Message", placeholder: "Tell us about your interest in Ukrainian art or how we can help", required: true
}}
buttonText="Send Inquiry"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
/>
</div>
@@ -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"
@@ -242,4 +238,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}