Merge version_3 into main #13

Merged
bender merged 2 commits from version_3 into main 2026-03-03 00:59:43 +00:00
2 changed files with 86 additions and 0 deletions

85
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,85 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Rocket, Users } from 'lucide-react';
export default function AboutPage() {
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: "/" },
{ name: "How We Work", id: "/" },
{ name: "Results", id: "/" },
{ name: "Team", id: "/about" },
{ name: "Contact", id: "/" },
]}
/>
</div>
<div id="team" data-section="team" className="py-20">
<TeamCardTen
title="Meet the visionary team behind Installed AI. We are builders, strategists, and growth architects."
tag="Our Team"
tagAnimation="blur-reveal"
members={[
{
id: "1", name: "Sarah Chen", 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", name: "Michael Rodriguez", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APXYs8p19SwZgPCy0dYpDGi8Hd/professional-headshot-man-tech-executive-1772496095593-628d1502.png", imageAlt: "Michael Rodriguez - CTO"},
{
id: "3", name: "Emma Thompson", 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", name: "James Park", 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"},
]}
membersAnimation="blur-reveal"
memberVariant="card"
useInvertedBackground={false}
/>
</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"
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>
);
}

View File

@@ -32,6 +32,7 @@ export default function LandingPage() {
{ name: "What We Build", id: "capabilities" },
{ name: "How We Work", id: "process" },
{ name: "Results", id: "metrics" },
{ name: "Team", id: "about" },
{ name: "Contact", id: "contact" },
]}
/>