Merge version_1_1777372218759 into main #4

Merged
bender merged 1 commits from version_1_1777372218759 into main 2026-04-28 10:33:36 +00:00

View File

@@ -2,18 +2,16 @@ import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
import ContactCta from '@/components/sections/contact/ContactCta';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia';
import GridLinesBackground from "@/components/ui/GridLinesBackground";
import HeroBrandCarousel from '@/components/sections/hero/HeroBrandCarousel';
import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards';
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
import TestimonialSplitCards from '@/components/sections/testimonial/TestimonialSplitCards';
import { Home, Shield, Award, Trophy, TrendingUp, Users } from "lucide-react";
import FooterMinimal from '@/components/sections/footer/FooterMinimal';
export default function HomePage() {
return (
<>
<div id="hero" data-section="hero" className="relative">
<GridLinesBackground position="absolute" />
<HeroBrandCarousel
brand="Prime Estate Solutions"
description="Exquisite properties for the discerning client. Discover your future home with our expert guidance and curated collection of luxury estates."
@@ -144,6 +142,18 @@ export default function HomePage() {
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterMinimal
brand="Prime Estate Solutions"
copyright="© 2024 Prime Estate Solutions. All rights reserved."
socialLinks={[
{ icon: "Instagram", href: "#" },
{ icon: "Twitter", href: "#" },
{ icon: "Linkedin", href: "#" },
]}
/>
</div>
</>
);
}