Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #4.
This commit is contained in:
2025-12-26 08:15:13 +00:00
2 changed files with 8 additions and 8 deletions

View File

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

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>
);
}
}