Merge version_1_1782293102786 into main #3

Merged
bender merged 1 commits from version_1_1782293102786 into main 2026-06-24 09:26:53 +00:00

View File

@@ -6,8 +6,8 @@ import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards';
import { Briefcase, Clock, Star, TrendingUp, User, Zap } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import FooterBrand from '@/components/sections/footer/FooterBrand';
export default function HomePage() {
return (
@@ -141,6 +141,18 @@ export default function HomePage() {
/>
</SectionErrorBoundary>
</div>
<div id="footer" data-section="footer">
<SectionErrorBoundary name="footer">
<FooterBrand
brand="AI BUSINESS © 2024"
columns={[
{ items: [{ label: "Services", href: "#services" }, { label: "Pricing", href: "#pricing" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
{ items: [{ label: "Telegram", href: "https://t.me" }, { label: "Instagram", href: "https://instagram.com" }] }
]}
/>
</SectionErrorBoundary>
</div>
</>
);
}