From 9bf27f050b93e1f8604c83c9c24732734e010b45 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:54:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 371 +++++++---------------------------------------- 1 file changed, 49 insertions(+), 322 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9fc2613..6cf6db1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,344 +1,71 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import React from "react"; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; -import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TeamCardSix from "@/components/sections/team/TeamCardSix"; -import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; -import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; -import Link from "next/link"; -import { - Building2, - Zap, - TrendingUp, - BarChart3, - DollarSign, - Clock, - Link as LinkIcon, - Users, - MessageSquare, - HelpCircle, - Home, - CheckCircle, -} from "lucide-react"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import { Package } from "lucide-react"; -export default function HomePage() { +export default function Home() { return ( - {/* Navbar */} - + - {/* Hero Section */} -
- -
- - {/* About Section */} -
- -
- - {/* Featured Properties Section */}
- console.log("Favorited"), + onProductClick: () => console.log("Clicked"), + }, { - id: "2", brand: "✓ Verified Residential Mixed-Use", name: "Luxury Apartment Building - Miami, FL", price: "$4,200,000", rating: 5, - reviewCount: "89", imageSrc: - "http://img.b2bpic.net/free-photo/miami-beach-ocean-view_649448-234.jpg", imageAlt: "Luxury residential apartment complex"}, + id: "2", name: "Suburban Family Homes", price: "$320,000", variant: "Verified Listed Property", imageSrc: "asset://property-2", imageAlt: "Suburban Family Homes", isFavorited: false, + onFavorite: () => console.log("Favorited"), + onProductClick: () => console.log("Clicked"), + }, { - id: "3", brand: "✓ Verified Retail Investment", name: "Retail Shopping Center - Austin, TX", price: "$3,100,000", rating: 5, - reviewCount: "156", imageSrc: - "http://img.b2bpic.net/free-photo/indoor-hotel-view_1417-1566.jpg", imageAlt: "Modern retail shopping center"}, + id: "3", name: "Commercial Plaza", price: "$1,200,000", variant: "Quality Vetted Investment", imageSrc: "asset://property-3", imageAlt: "Commercial Plaza", isFavorited: false, + onFavorite: () => console.log("Favorited"), + onProductClick: () => console.log("Clicked"), + }, + { + id: "4", name: "Beachfront Resort Condo", price: "$850,000", variant: "Premium Verified", imageSrc: "asset://property-4", imageAlt: "Beachfront Resort Condo", isFavorited: false, + onFavorite: () => console.log("Favorited"), + onProductClick: () => console.log("Clicked"), + }, ]} - buttons={[{ text: "View All Properties", href: "/search" }]} - buttonAnimation="slide-up" - /> -
- - {/* Market Analytics Section */} -
- -
- - {/* Syndication Partners Section */} -
- -
- - {/* Team Section */} -
- -
- - {/* Testimonials Section */} -
- -
- - {/* FAQ Section */} -
-
- - {/* Contact Section */} -
- -
- - {/* Footer */} -
-- 2.49.1