Switch to version 1: remove src/app/about/page.tsx

This commit is contained in:
2026-05-07 13:42:10 +00:00
parent 2f0b71d6ba
commit 5cffe95f28

View File

@@ -1,54 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLargeSizeLargeTitles"
background="floatingGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Mentorship", id: "/#program" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Success", id: "/#success" },
{ name: "Apply Now", id: "/#contact" },
{ name: "About", id: "/about" }
]}
brandName="IB Mastery Africa"
button={{ text: "WhatsApp Us", href: "https://wa.me/27123456789" }}
/>
<div className="pt-32 pb-20">
<TextSplitAbout
useInvertedBackground={false}
title="About IB Mastery Africa"
description={[
"We are committed to democratizing access to professional financial opportunities within South Africa.", "Our mission is to equip aspiring Introducing Brokers with the exact tools, systems, and mentorship required to scale their earnings and achieve true financial independence."
]}
/>
</div>
<FooterBase
columns={[
{ title: "Links", items: [{ label: "Mentorship", href: "/#program" }, { label: "Pricing", href: "/#pricing" }, { label: "Contact", href: "/#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
logoText="IB Mastery Africa"
/>
</ReactLenis>
</ThemeProvider>
);
}