Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-06 08:27:02 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
@@ -229,33 +229,34 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBaseReveal
logoText="AirtimeConnect"
columns={[
{
items: [
{
label: "Home", href: "#hero"},
{
label: "Features", href: "#features"},
{
label: "Pricing", href: "#pricing"},
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "#contact" },
{ label: "Careers", href: "#" },
],
},
{
items: [
{
label: "Contact", href: "#contact"},
{
label: "Terms", href: "#"},
{
label: "Privacy", href: "#"},
title: "Products", items: [
{ label: "Airtime Top-up", href: "#pricing" },
{ label: "Data Bundles", href: "#" },
{ label: "Support", href: "#faq" },
],
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
],
},
]}
logoText="AirtimeConnect"
copyrightText="© 2024 AirtimeConnect Zimbabwe. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}