1 Commits

Author SHA1 Message Date
70061e7a87 Bob AI: [Block: footer-base|Footer Base|/blocks/footer/foo... 2026-01-30 15:30:03 +00:00

View File

@@ -7,9 +7,9 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { BookOpen, Mail } from "lucide-react"; import { BookOpen, Mail } from "lucide-react";
import FooterBase from '@/components/sections/footer/FooterBase';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -165,46 +165,46 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterBase
logoText="Chill Time" columns={[
columns={[ {
{ items: [
items: [ { label: "About Us", href: "about" },
{ label: "About Us", href: "about" }, { label: "Our Mission", href: "about" },
{ label: "Our Mission", href: "about" }, { label: "Community", href: "testimonial" }
{ label: "Community", href: "testimonial" } ]
] },
}, {
{ items: [
items: [ { label: "Current Books", href: "features" },
{ label: "Current Books", href: "features" }, { label: "Reading Lists", href: "features" },
{ label: "Reading Lists", href: "features" }, { label: "Recommendations", href: "features" }
{ label: "Recommendations", href: "features" } ]
] },
}, {
{ items: [
items: [ { label: "Upcoming Events", href: "metrics" },
{ label: "Upcoming Events", href: "metrics" }, { label: "Calendar", href: "metrics" },
{ label: "Calendar", href: "metrics" }, { label: "Discussions", href: "metrics" }
{ label: "Discussions", href: "metrics" } ]
] },
}, {
{ items: [
items: [ { label: "Contact Us", href: "contact" },
{ label: "Contact Us", href: "contact" }, { label: "Newsletter", href: "contact" },
{ label: "Newsletter", href: "contact" }, { label: "Privacy Policy", href: "#" }
{ label: "Privacy Policy", href: "#" } ]
] },
}, {
{ items: [
items: [ { label: "Twitter", href: "https://twitter.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "Instagram", href: "https://instagram.com" }, { label: "Facebook", href: "https://facebook.com" }
{ label: "Facebook", href: "https://facebook.com" } ]
] }
} ]}
]} copyrightText="© 2025 | Webild"
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );