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

This commit is contained in:
2026-02-01 22:38:20 +02:00
parent 0f63dbc5a9
commit 16b14d5e34

View File

@@ -1,7 +1,6 @@
"use client"
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, BookOpen, Users, TrendingUp, Award, Target } from "lucide-react";
import ContactForm from '@/components/form/ContactForm';
@@ -11,6 +10,7 @@ import HeroBillboard1 from '@/components/sections/hero/HeroBillboard1';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardOne1 from '@/components/sections/team/TeamCardOne1';
import FooterBase1 from '@/components/sections/footer/FooterBase1';
export default function TechAcademyPage() {
return (
@@ -101,38 +101,9 @@ export default function TechAcademyPage() {
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-vector/digital-particle-flowing-mesh-technology-background_1017-28408.jpg"
imageAlt="Technology background"
logoText="TechMasters"
copyrightText="© 2026 TechMasters. All rights reserved."
columns={[
{
title: "Programs", items: [
{ label: "Web Development", href: "#" },
{ label: "Data Science", href: "#" },
{ label: "Cloud Computing", href: "#" },
{ label: "Cybersecurity", href: "#" }
]
},
{
title: "Resources", items: [
{ label: "Course Catalog", href: "#" },
{ label: "Blog & Articles", href: "#" },
{ label: "Documentation", href: "#" },
{ label: "Career Resources", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact Support", href: "#" },
{ label: "Partners", href: "#" },
{ label: "Careers at TechMasters", href: "#" }
]
}
]}
/>
<FooterBase1
title="Footer Base"
/>
</div>
</ThemeProvider>
);