diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6ab4867..eb0f50d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -8,7 +8,6 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
-import { Star, Shield, ArrowRight } from 'lucide-react';
export default function HomePage() {
const navItems = [
@@ -46,6 +45,7 @@ export default function HomePage() {
@@ -54,6 +54,7 @@ export default function HomePage() {
description="Comprehensive solutions tailored to your unique business needs."
textboxLayout="split"
animationType="slide-up"
+ useInvertedBackground={false}
features={[
{ id: "s1", label: "Growth", title: "Strategic Planning", items: ["Market Analysis", "Roadmap Design"] },
{ id: "s2", label: "Build", title: "Product Engineering", items: ["Web Development", "App Design"] }
@@ -67,6 +68,7 @@ export default function HomePage() {
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
+ useInvertedBackground={false}
testimonials={Array.from({ length: 3 }).map((_, i) => ({ id: `t${i}`, name: "Client", role: "Founder", company: "Innovate Corp", rating: 5 }))}
/>
@@ -74,6 +76,7 @@ export default function HomePage() {