8 Commits

Author SHA1 Message Date
0a534a1e75 Merge version_25 into main
Merge version_25 into main
2026-03-13 02:21:18 +00:00
e813ac77d1 Update src/app/about/page.tsx 2026-03-13 02:21:14 +00:00
0979b482b9 Merge version_24 into main
Merge version_24 into main
2026-03-13 02:17:54 +00:00
0c48def8c8 Update src/app/services/page.tsx 2026-03-13 02:17:50 +00:00
a60a803117 Update src/app/page.tsx 2026-03-13 02:17:49 +00:00
ec0557a173 Update src/app/contact/page.tsx 2026-03-13 02:17:49 +00:00
fb5ec66820 Update src/app/about/page.tsx 2026-03-13 02:17:48 +00:00
9cf85c5ac5 Merge version_23 into main
Merge version_23 into main
2026-03-13 01:46:18 +00:00
4 changed files with 8 additions and 24 deletions

View File

@@ -86,16 +86,6 @@ export default function AboutPage() {
id: "2", reverse: true,
media: <div className="w-full h-full bg-gradient-to-br from-green-400 to-blue-500 rounded-lg flex items-center justify-center"><span className="text-white text-2xl font-bold">2021</span></div>,
content: <div><h3 className="text-xl font-bold mb-2">Growth</h3><p className="text-sm mb-3">Expanded our team and established partnerships with industry leaders.</p><ul className="text-sm space-y-1"><li> Scaled to 10+ team members</li><li> $2M in client revenue generated</li><li> Industry recognition and awards</li></ul></div>
},
{
id: "3", reverse: false,
media: <div className="w-full h-full bg-gradient-to-br from-pink-400 to-orange-500 rounded-lg flex items-center justify-center"><span className="text-white text-2xl font-bold">2022-2023</span></div>,
content: <div><h3 className="text-xl font-bold mb-2">Maturity</h3><p className="text-sm mb-3">Established ourselves as the trusted partner for premium brands worldwide.</p><ul className="text-sm space-y-1"><li> 50+ active clients globally</li><li> $50M+ in total client revenue generated</li><li> Multiple industry excellence awards</li></ul></div>
},
{
id: "4", reverse: true,
media: <div className="w-full h-full bg-gradient-to-br from-purple-400 to-pink-500 rounded-lg flex items-center justify-center"><span className="text-white text-2xl font-bold">2024+</span></div>,
content: <div><h3 className="text-xl font-bold mb-2">The Future</h3><p className="text-sm mb-3">Continuing to innovate and lead the industry in AI-powered marketing solutions.</p><ul className="text-sm space-y-1"><li> Building next-generation AI systems</li><li> Expanding global reach</li><li> Setting industry standards</li></ul></div>
}
]}
/>
@@ -115,12 +105,6 @@ export default function AboutPage() {
},
{
id: "2", name: "Sophia Chen", role: "Chief Marketing Officer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab9WrGggvouKVqc6dwqfHCHOvA/professional-portrait-of-a-confident-mar-1773289186890-9d714eef.png?_wi=3"
},
{
id: "3", name: "James Mitchell", role: "Chief Technology Officer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab9WrGggvouKVqc6dwqfHCHOvA/professional-portrait-of-a-successful-en-1773289186769-5f49b9f5.png?_wi=3"
},
{
id: "4", name: "Alexandra Price", role: "VP Growth", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab9WrGggvouKVqc6dwqfHCHOvA/professional-portrait-of-a-confident-bus-1773289187161-d558b679.png?_wi=2"
}
]}
gridVariant="four-items-2x2-equal-grid"
@@ -161,4 +145,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -33,7 +33,7 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "#services" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
@@ -159,7 +159,7 @@ export default function ContactPage() {
columns={[
{
title: "Product", items: [
{ label: "Services", href: "#services" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "#portfolio" }
]
},
@@ -177,8 +177,8 @@ export default function ContactPage() {
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }
{ label: "Privacy", href: "#privacy" },
{ label: "Terms", href: "#terms" }
]
}
]}
@@ -187,4 +187,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -206,4 +206,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -198,4 +198,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}