Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-26 18:54:20 +00:00

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -22,117 +22,71 @@ export default function LandingPage() {
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Brandify"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="Brandify"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Crafting the Future of Branding"
description="We are a team of creative visionaries and tech enthusiasts dedicated to building brands that resonate and scale. By combining artistic strategy with cutting-edge AI systems, we help businesses define their identity in a crowded market."
bulletPoints={[
{
title: "Creative Strategy",
description: "Defining your brand voice and visual language.",
},
{
title: "AI Integration",
description: "Leveraging smart tools for design and automation.",
},
{
title: "Precision Design",
description: "Pixel-perfect execution for modern platforms.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUkdaWLTRC9O0Nro7unoxCMwwK/modern-high-end-graphic-design-agency-da-1774551215236-20d01309.png?_wi=2"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Crafting the Future of Branding"
description="We are a team of creative visionaries and tech enthusiasts dedicated to building brands that resonate and scale. By combining artistic strategy with cutting-edge AI systems, we help businesses define their identity in a crowded market."
bulletPoints={[
{
title: "Creative Strategy", description: "Defining your brand voice and visual language."},
{
title: "AI Integration", description: "Leveraging smart tools for design and automation."},
{
title: "Precision Design", description: "Pixel-perfect execution for modern platforms."},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUkdaWLTRC9O0Nro7unoxCMwwK/modern-high-end-graphic-design-agency-da-1774551215236-20d01309.png"
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
animationType="slide-up"
textboxLayout="default"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
members={[
{
id: "1",
name: "Elena Sterling",
role: "Creative Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUkdaWLTRC9O0Nro7unoxCMwwK/professional-business-headshot-1774551214528-bfad239f.png",
},
{
id: "2",
name: "Marcus Thorne",
role: "Lead Brand Strategist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUkdaWLTRC9O0Nro7unoxCMwwK/professional-business-headshot-1774551213079-2f281348.png",
},
]}
title="Meet The Visionaries"
description="Our team brings together decades of experience in design, branding, and engineering."
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
animationType="slide-up"
textboxLayout="default"
gridVariant="two-columns"
useInvertedBackground={false}
members={[
{
id: "1", name: "Elena Sterling", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUkdaWLTRC9O0Nro7unoxCMwwK/professional-business-headshot-1774551214528-bfad239f.png"},
{
id: "2", name: "Marcus Thorne", role: "Lead Brand Strategist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUkdaWLTRC9O0Nro7unoxCMwwK/professional-business-headshot-1774551213079-2f281348.png"},
]}
title="Meet The Visionaries"
description="Our team brings together decades of experience in design, branding, and engineering."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "Services",
href: "/services",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Resources",
items: [
{
label: "Contact",
href: "/contact",
},
],
},
]}
copyrightText="© 2025 Brandify | All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Brandify"
columns={[
{
items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" }
]
},
{
items: [
{ label: "Contact", href: "/contact" }
]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}