Update src/app/page.tsx

This commit is contained in:
2025-12-26 08:15:09 +00:00
parent 1f4ac67bce
commit c768b91d4c

View File

@@ -11,7 +11,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
import TeamCardFour from '@/components/sections/team/TeamCardFour';
import ContactInline from '@/components/sections/contact/ContactInline';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ShoppingCart, Sparkles, Target } from "lucide-react";
import { ShoppingCart, Sparkles, Target, X } from "lucide-react";
export default function LandingPage() {
return (
@@ -85,11 +85,11 @@ export default function LandingPage() {
negativeCard={{
title: "Traditional Marketing",
items: [
"One-size-fits-all campaigns",
"Limited measurement and analytics",
"Slow adaptation to market changes",
"Higher costs with unclear ROI",
"Outdated strategies and tactics"
{ icon: X, text: "One-size-fits-all campaigns", iconColor: "#ff0000" },
{ icon: X, text: "Limited measurement and analytics", iconColor: "#ff0000" },
{ icon: X, text: "Slow adaptation to market changes", iconColor: "#ff0000" },
{ icon: X, text: "Higher costs with unclear ROI", iconColor: "#ff0000" },
{ icon: X, text: "Outdated strategies and tactics", iconColor: "#ff0000" }
]
}}
positiveCard={{
@@ -342,4 +342,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}