Files
e9c0fbd0-80c5-49bb-8c6d-e4f…/src/app/about/page.tsx
2026-03-03 08:17:38 +00:00

173 lines
8.4 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import SplitAbout from "@/components/sections/about/SplitAbout";
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Building2, Star, DollarSign, Globe, Linkedin, Twitter } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Team", href: "/team" },
{ label: "Careers", href: "#" },
],
},
{
title: "Resources", items: [
{ label: "Blog", href: "#" },
{ label: "Insights", href: "#" },
{ label: "Reports", href: "#" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Sitemap", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="largeSmall"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Get Started", href: "/contact" }}
brandName="Mbatech Ventures"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Our Story & Vision"
description="Founded with a mission to democratize venture capital, Mbatech Ventures combines traditional investment expertise with cutting-edge technology to identify and scale the next generation of industry leaders. We believe in backing visionary founders who are reshaping technology and society."
tag="About Mbatech"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWpGN0mtQcwwv9J8G9YbvClhd/thriving-startup-ecosystem-visualization-1772525531598-c1fdd4f1.png"
imageAlt="Our vision for the future of tech"
mediaAnimation="blur-reveal"
imagePosition="right"
bulletPoints={[
{
title: "Founded 2015", description: "Started with a vision to revolutionize venture capital through technology-driven insights and human expertise.", icon: Building2,
},
{
title: "Global Reach", description: "Operating across 18 countries with a diverse portfolio spanning AI, fintech, cloud infrastructure, and enterprise software.", icon: Globe,
},
{
title: "Proven Track Record", description: "8 unicorn-status companies and 50+ portfolio companies reflecting our commitment to backing breakthrough innovation.", icon: Star,
},
{
title: "$2.5B Deployed", description: "Strategic capital allocation focused on companies with exceptional growth potential and transformative technology.", icon: DollarSign,
},
]}
buttons={[{ text: "Our Values", href: "/about" }]}
buttonAnimation="blur-reveal"
ariaLabel="About section - Our story"
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
title="Meet Our Leadership"
description="Experienced venture capitalists and entrepreneurs driving innovation at Mbatech Ventures."
tag="Leadership Team"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
members={[
{
id: "1", name: "Michael Zhang", role: "Founder & Managing Partner", description: "20+ years in venture capital and tech entrepreneurship. Previously founded two successful SaaS companies.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWpGN0mtQcwwv9J8G9YbvClhd/professional-headshot-of-company-ceo-in--1772525529584-53f22731.png", imageAlt: "Michael Zhang, Founder", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Twitter, url: "https://twitter.com" },
],
},
{
id: "2", name: "Jennifer Park", role: "Chief Investment Officer", description: "Former investor at leading tech funds with expertise in AI/ML and fintech. Board member at 3 unicorns.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWpGN0mtQcwwv9J8G9YbvClhd/professional-portrait-of-chief-operation-1772525529727-95cde115.png", imageAlt: "Jennifer Park, CIO", socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Twitter, url: "https://twitter.com" },
],
},
{
id: "3", name: "David Thompson", role: "Head of Portfolio Operations", description: "Operations expert with 15+ years building and scaling high-growth tech companies. Advisor to 12 portfolio firms.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWpGN0mtQcwwv9J8G9YbvClhd/professional-headshot-of-head-of-investm-1772525529970-5fd3cf16.png", imageAlt: "David Thompson, Portfolio Operations", socialLinks: [{ icon: Linkedin, url: "https://linkedin.com" }],
},
]}
buttons={[{ text: "Full Team", href: "#" }]}
buttonAnimation="blur-reveal"
ariaLabel="Team section - Leadership"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardOne
title="Our Impact"
description="Demonstrating our commitment to building transformative companies and creating lasting value."
tag="Achievements"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
animationType="scale-rotate"
metrics={[
{
id: "1", value: "50", title: "Companies", description: "Portfolio companies invested since founding", icon: Building2,
},
{
id: "2", value: "8", title: "Unicorns", description: "Portfolio companies valued at $1B+", icon: Star,
},
{
id: "3", value: "2.5", title: "Billion", description: "Total capital deployed across portfolio", icon: DollarSign,
},
{
id: "4", value: "18", title: "Countries", description: "Global presence and investment reach", icon: Globe,
},
]}
buttons={[{ text: "View Impact Report", href: "#" }]}
buttonAnimation="blur-reveal"
ariaLabel="Metrics section - Achievements"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2025 Mbatech Ventures. All rights reserved."
ariaLabel="Footer navigation"
/>
</div>
</ThemeProvider>
);
}