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