diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f7f59f..87fc979 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1256,4 +1256,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 7943e21..7f21ffc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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() { ); -} +} \ No newline at end of file