Update src/app/portfolio/page.tsx

This commit is contained in:
2026-05-24 13:08:03 +00:00
parent 5a3601efa3
commit 7ac6fa07f6

View File

@@ -25,30 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Trust Digi World"
/>
@@ -61,9 +43,7 @@ export default function LandingPage() {
description="How we scaled brands across multiple industries."
metrics={[
{
value: "500%",
title: "Avg Revenue Lift",
},
value: "500%", title: "Avg Revenue Lift"},
]}
imageSrc="http://img.b2bpic.net/free-photo/tech-people-trying-achieve-ambitious-sustainability-goals_23-2150950175.jpg"
/>
@@ -78,23 +58,11 @@ export default function LandingPage() {
description="Real results from real partnerships."
features={[
{
id: "c1",
title: "E-commerce Growth",
descriptions: [
"10x ROAS achieved.",
],
imageSrc: "http://img.b2bpic.net/free-photo/employee-drinking-coffee-holding-laptop-working-strategy_482257-78092.jpg?_wi=5",
imageAlt: "modern marketing agency office",
},
id: "c1", title: "E-commerce Growth", descriptions: ["10x ROAS achieved."],
imageSrc: "http://img.b2bpic.net/free-photo/employee-drinking-coffee-holding-laptop-working-strategy_482257-78092.jpg?_wi=5", imageAlt: "modern marketing agency office"},
{
id: "c2",
title: "SaaS Lead Gen",
descriptions: [
"High-intent acquisition.",
],
imageSrc: "http://img.b2bpic.net/free-photo/doctor-pressing-virtual-application_1134-640.jpg?_wi=4",
imageAlt: "modern marketing agency office",
},
id: "c2", title: "SaaS Lead Gen", descriptions: ["High-intent acquisition."],
imageSrc: "http://img.b2bpic.net/free-photo/doctor-pressing-virtual-application_1134-640.jpg?_wi=4", imageAlt: "modern marketing agency office"},
]}
/>
</div>
@@ -103,29 +71,15 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Services",
items: [
{
label: "Meta Ads",
href: "/services",
},
{
label: "Google Ads",
href: "/services",
},
title: "Services", items: [
{ label: "Meta Ads", href: "/services" },
{ label: "Google Ads", href: "/services" },
],
},
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
]}
@@ -136,4 +90,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}