Update src/app/about/page.tsx

This commit is contained in:
2026-03-31 21:20:24 +00:00
parent 90b40e6a42
commit afce664664

View File

@@ -1,127 +1,29 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Users } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="grid"
cardStyle="soft-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Masi Digital"
button={{
text: "Get a Free Preview",
href: "/contact",
}}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
title="Built for Growth"
description="Masi Digital was founded to bridge the gap between aesthetic design and technical lead generation."
bulletPoints={[
{
title: "Local Focus",
description: "We understand the Long Island market.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-working-interior-design-project_23-2150346478.jpg"
mediaAnimation="opacity"
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Leadership"
description="Meet the team building your future."
members={[
{
id: "t1",
name: "Masi Team",
role: "Digital Strategists",
description: "Focused on your success.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-successful-business-leader-posing_1262-21162.jpg",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<ThemeProvider>
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Masi Digital"
button={{ text: "Get a Free Preview", href: "/contact" }}
/>
<TestimonialAboutCard
tag="Our Story"
title="Built for Long Island Businesses"
description="Masi Digital was founded on the principle that local businesses deserve the same technical sophistication as global corporations."
subdescription="We combine modern web design with cutting-edge AI systems to save you time and maximize revenue."
icon={Users}
/>
<FooterBaseCard
logoText="Masi Digital"
columns={[
{
title: "Links",
items: [
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Contact",
items: [
{
label: "masidigitalco@gmail.com",
href: "mailto:masidigitalco@gmail.com",
},
],
},
]}
copyrightText="© 2025 Masi Digital. All Rights Reserved."
/>
</div>
</ReactLenis>
logoText="Masi Digital"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }]}
/>
</ThemeProvider>
);
}
}