Add src/app/team/page.tsx

This commit is contained in:
2026-03-03 01:02:48 +00:00
parent 27a90d6475
commit 979df57c25

99
src/app/team/page.tsx Normal file
View File

@@ -0,0 +1,99 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Rocket, Users } from 'lucide-react';
export default function TeamPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSmall"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Installed AI"
navItems={[
{ name: "What We Build", id: "capabilities" },
{ name: "How We Work", id: "process" },
{ name: "Results", id: "metrics" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "contact" },
]}
/>
</div>
<div id="team" data-section="team" className="py-20">
<TeamCardEleven
title="Meet the visionary team behind Installed AI"
description="We are builders, strategists, and growth architects dedicated to transforming businesses through AI-powered infrastructure."
tag="Our Team"
tagIcon={Users}
tagAnimation="blur-reveal"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
groups={[
{
id: "founders", groupTitle: "Founders", members: [
{
id: "1", title: "Sarah Chen", subtitle: "Founder & CEO", detail: "sarah@installedai.com", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APXYs8p19SwZgPCy0dYpDGi8Hd/professional-headshot-woman-tech-leader-1772496095507-570f157f.png", imageAlt: "Sarah Chen - Founder & CEO"
},
{
id: "2", title: "Michael Rodriguez", subtitle: "Co-Founder & CTO", detail: "michael@installedai.com", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APXYs8p19SwZgPCy0dYpDGi8Hd/professional-headshot-man-tech-executive-1772496095593-628d1502.png", imageAlt: "Michael Rodriguez - Co-Founder & CTO"
}
]
},
{
id: "leadership", groupTitle: "Leadership", members: [
{
id: "3", title: "Emma Thompson", subtitle: "VP Growth", detail: "emma@installedai.com", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APXYs8p19SwZgPCy0dYpDGi8Hd/professional-headshot-woman-marketing-lead-1772496095744-b9a04889.png", imageAlt: "Emma Thompson - VP Growth"
},
{
id: "4", title: "James Park", subtitle: "Head of Strategy", detail: "james@installedai.com", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APXYs8p19SwZgPCy0dYpDGi8Hd/professional-headshot-man-strategy-officer-1772496097179-aa7a4dc5.png", imageAlt: "James Park - Head of Strategy"
}
]
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Ready to Partner?"
title="Let's Build Together"
description="Connect with our team to explore how we can help scale your business with AI-powered growth systems."
tagIcon={Rocket}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APXYs8p19SwZgPCy0dYpDGi8Hd/modern-contact-or-consultation-interface-1772496096934-886cb0e1.png?_wi=2"
imageAlt="Consultation setup"
mediaAnimation="blur-reveal"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Get Started"
termsText="We'll review your business and send over a customized growth plan. No fluff."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Installed AI"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}