diff --git a/src/app/page.tsx b/src/app/page.tsx
index a5cb779..f9ad812 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,7 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
-import { Zap, Shield, Star, Users, MapPin, Mail, MessageSquare } from 'lucide-react';
+import { Zap, Shield, Star, Users } from 'lucide-react';
export default function Page() {
const navItems = [{ name: "Home", id: "/" }];
@@ -39,6 +39,7 @@ export default function Page() {
description="Our community is growing every single day."
animationType="depth-3d"
textboxLayout="default"
+ useInvertedBackground={false}
metrics={[
{ id: "1", icon: Users, title: "Residents", value: "5,000+" },
{ id: "2", icon: Shield, title: "Safety Rating", value: "99.9%" },
@@ -54,6 +55,7 @@ export default function Page() {
subdescription="We combine modern technology with timeless design principles."
icon={Zap}
imageSrc="https://images.unsplash.com/photo-1600573472591-ee6b68d14c68?q=80&w=2000"
+ useInvertedBackground={false}
/>
@@ -63,6 +65,7 @@ export default function Page() {
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
+ useInvertedBackground={false}
products={[
{ id: "1", name: "Penthouse Suite", price: "$5,000/mo", imageSrc: "https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=800" },
{ id: "2", name: "Garden Villa", price: "$4,200/mo", imageSrc: "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=800" },
@@ -75,6 +78,7 @@ export default function Page() {
title="Exceptional Amenities"
description="We provide everything you need for a complete living experience."
imageSrc="https://images.unsplash.com/photo-1600573472591-ee6b68d14c68?q=80&w=1200"
+ useInvertedBackground={false}
accordionItems={[
{ id: "1", title: "Fitness Center", content: "State of the art equipment 24/7." },
{ id: "2", title: "Concierge Services", content: "Professional support for your daily needs." },
@@ -87,6 +91,7 @@ export default function Page() {
title="Testimonials"
description="What our residents have to say about us."
textboxLayout="default"
+ useInvertedBackground={false}
testimonials={[
{ id: "1", name: "John Doe", date: "2024-01-01", title: "Amazing Experience", quote: "Truly the best place I have lived in!", tag: "resident", avatarSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=John" },
{ id: "2", name: "Jane Smith", date: "2024-02-15", title: "Luxury Living", quote: "The concierge service is top notch.", tag: "resident", avatarSrc: "https://api.dicebear.com/7.x/avataaars/svg?seed=Jane" }
@@ -97,6 +102,7 @@ export default function Page() {