Files
6848e87c-5bfe-41b7-abc1-3b0…/src/app/about/page.tsx
2026-04-09 02:13:24 +00:00

84 lines
2.9 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="grid"
cardStyle="glass-depth"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Dashboard", id: "/" },
{ name: "Academy", id: "/academy" },
{ name: "Commands", id: "/commands" },
{ name: "News", id: "/news" },
{ name: "About", id: "/about" }
]}
brandName="MHI Cyber Shield"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
<div id="about-team" data-section="about-team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
groups={[
{
id: "core", groupTitle: "MHI Leadership", members: [
{
id: "m1", title: "Arsh Patel", subtitle: "Founder & Lead Researcher", detail: "Mastermind Hackers India visionary.", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg"
},
{
id: "m2", title: "Security Lead", subtitle: "Operations", detail: "Infrastructure and Security.", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg"
}
]
}
]}
title="Meet MHI Team"
description="Ethical hackers committed to safety."
/>
</div>
<div id="about-contact" data-section="about-contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Security Research"
title="Join Our Mission"
description="Ethical purposes only. Contact for inquiries."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Platform", items: [{ label: "Academy", href: "/academy" }, { label: "Commands", href: "/commands" }] },
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "News", href: "/news" }] }
]}
logoText="MHI Cyber Shield"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}