diff --git a/src/app/page.tsx b/src/app/page.tsx
index 97c1c87..c012c16 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,14 +1,16 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
-import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
-import ProductCardFour from "@/components/sections/product/ProductCardFour";
-import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
-import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
-import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
-import ContactCTA from "@/components/sections/contact/ContactCTA";
-import FooterSimple from "@/components/sections/footer/FooterSimple";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
+import ProductCardFour from '@/components/sections/product/ProductCardFour';
+import MediaAbout from '@/components/sections/about/MediaAbout';
+import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
+import TeamCardOne from '@/components/sections/team/TeamCardOne';
+import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
+import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
import Link from "next/link";
import { Sparkles, Home, Award, Mail, DollarSign, Users } from "lucide-react";
@@ -49,26 +51,17 @@ export default function HomePage() {
background={{ variant: "plain" }}
mediaItems={[
{
- imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1",
- imageAlt: "Modern luxury penthouse with city views",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg", imageAlt: "Modern luxury penthouse with city views"},
{
- imageSrc: "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg?_wi=1",
- imageAlt: "Contemporary villa with sophisticated design",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg", imageAlt: "Contemporary villa with sophisticated design"},
{
- imageSrc: "http://img.b2bpic.net/free-photo/two-happy-woman-friends-with-sunglasses-vacation-tropical-country_343596-726.jpg?_wi=1",
- imageAlt: "Waterfront luxury estate",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/two-happy-woman-friends-with-sunglasses-vacation-tropical-country_343596-726.jpg", imageAlt: "Waterfront luxury estate"},
{
- imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-resting-home-with-good-mood_651396-28.jpg?_wi=1",
- imageAlt: "Elegant penthouse interior",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-resting-home-with-good-mood_651396-28.jpg", imageAlt: "Elegant penthouse interior"},
{
- imageSrc: "http://img.b2bpic.net/free-photo/shanghai-urban-architecture-park_649448-2072.jpg",
- imageAlt: "Grand estate with landscaped grounds",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/shanghai-urban-architecture-park_649448-2072.jpg", imageAlt: "Grand estate with landscaped grounds"},
]}
+ mediaAnimation="none"
buttons={[
{ text: "View Properties", href: "/properties" },
{ text: "Schedule Consultation", href: "/contact" },
@@ -80,29 +73,11 @@ export default function HomePage() {