Bob AI: replace footer with [Block: footer-base-1|Footer B...

This commit is contained in:
2026-02-05 12:08:37 +02:00
parent 2deee11e99
commit e0d14009ad

View File

@@ -8,7 +8,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBase1 from '@/components/sections/footer/FooterBase1';
import { Camera, Zap, Sparkles, Monitor, Shield, Star, Heart } from "lucide-react"; import { Camera, Zap, Sparkles, Monitor, Shield, Star, Heart } from "lucide-react";
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
@@ -228,35 +228,33 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBase1
columns={[ columns={[
{ {
title: "Products", items: [ title: "Products", items: [
{ label: "iPhone 15 Pro", href: "#products" }, { label: "iPhone 15 Pro", href: "#products" },
{ label: "iPhone 15", href: "#products" }, { label: "iPhone 15", href: "#products" },
{ label: "iPhone SE", href: "#products" }, { label: "iPhone SE", href: "#products" }
{ label: "Compare Models", href: "#pricing" } ]
] },
}, {
{ title: "Support", items: [
title: "Support", items: [ { label: "Help Center", href: "#contact" },
{ label: "Help Center", href: "#contact" }, { label: "Contact Us", href: "#contact" },
{ label: "Contact Us", href: "#contact" }, { label: "Warranty Info", href: "#" }
{ label: "Warranty Info", href: "#" }, ]
{ label: "Shipping & Returns", href: "#" } },
] {
}, title: "Company", items: [
{ { label: "About Us", href: "#" },
title: "Company", items: [ { label: "Blog", href: "#" },
{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }
{ label: "Blog", href: "#" }, ]
{ label: "Careers", href: "#" }, }
{ label: "Press", href: "#" } ]}
] copyrightText="© 2025 iPhone Store. All rights reserved."
} logoUrl="https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"
]} />
copyrightText="© 2025 iPhone Store. All rights reserved."
/>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );