Update src/app/about/page.tsx

This commit is contained in:
2026-05-24 09:07:36 +00:00
parent 926d12fe8d
commit 3c42ac9ee6

View File

@@ -7,85 +7,66 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Templates",
id: "/templates",
},
{
name: "Freebies",
id: "/freebies",
},
{
name: "About",
id: "/about",
},
{
name: "Admin",
id: "/admin",
},
]}
brandName="BrightBytee Studios"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Templates", id: "/templates" },
{ name: "Freebies", id: "/freebies" },
{ name: "About", id: "/about" },
{ name: "Admin", id: "/admin" },
]}
brandName="BrightBytee Studios"
/>
</div>
<div id="team" data-section="team">
<TeamCardOne
animationType="depth-3d"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
members={[
{
id: "t1",
name: "Vihaan Shrivastava",
role: "Founder & Creative Strategist",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-bearded-male-wearing-stylish-sui_613910-12110.jpg",
},
{
id: "t2",
name: "Technical Architect",
role: "Co-Founder",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-entrepreneur-with-corporate-job-looking-camera-business-office-portrait-young-man-preparing-work-planning-development-industry-with-technology-computer_482257-29387.jpg",
},
]}
title="Meet The Visionaries"
description="Young innovators on a mission to reshape digital design."
/>
</div>
<div id="team" data-section="team">
<TeamCardOne
animationType="depth-3d"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Meet The Visionaries"
description="Young innovators on a mission to reshape digital design."
members={[
{ id: "t1", name: "Vihaan Shrivastava", role: "Founder & Creative Strategist", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-bearded-male-wearing-stylish-sui_613910-12110.jpg" },
{ id: "t2", name: "Technical Architect", role: "Co-Founder", imageSrc: "http://img.b2bpic.net/free-photo/close-up-entrepreneur-with-corporate-job-looking-camera-business-office-portrait-young-man-preparing-work-planning-development-industry-with-technology-computer_482257-29387.jpg" }
]}
/>
</div>
<div id="about-studio" data-section="about-studio">
<TextSplitAbout
useInvertedBackground={false}
title="The BryteBytee Story"
description={[
"BrightBytee Studios was born out of a spark of curiosity and creativity. Started by two 16-year-old friends, we build digital experiences that feel bright, bold, and unforgettable.",
"Our mission is to democratize beautiful web design, making premium-quality website templates accessible to everyone in India — from solo entrepreneurs to growing businesses.",
]}
/>
</div>
<div id="about-studio" data-section="about-studio">
<TextSplitAbout
useInvertedBackground={false}
title="The BryteBytee Story"
description={[
"BrightBytee Studios was born out of a spark of curiosity and creativity. Started by two 16-year-old friends, we build digital experiences that feel bright, bold, and unforgettable.", "Our mission is to democratize beautiful web design, making premium-quality website templates accessible to everyone in India — from solo entrepreneurs to growing businesses."
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="BrightBytee Studios"
copyrightText="© 2025 BrightBytee Studios. All Rights Reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="BrightBytee Studios"
copyrightText="© 2025 BrightBytee Studios. All Rights Reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}