Update src/app/services/page.tsx

This commit is contained in:
2026-05-12 14:40:51 +00:00
parent 92029fc3d9
commit dcfc219301

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Portfolio",
id: "/portfolio",
},
name: "Portfolio", id: "/portfolio"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="AiViqo"
/>
@@ -58,15 +48,9 @@ export default function LandingPage() {
description="Our expertise."
features={[
{
title: "AI Logic",
description: "Custom code",
imageSrc: "http://img.b2bpic.net/free-photo/circuit-board-close-up-with-different-connections_23-2149174342.jpg",
},
title: "AI Logic", description: "Custom code", imageSrc: "http://img.b2bpic.net/free-photo/circuit-board-close-up-with-different-connections_23-2149174342.jpg"},
{
title: "Bot Deploy",
description: "Deployment",
imageSrc: "http://img.b2bpic.net/free-vector/options-business-solutions-diagram_1262-4270.jpg",
},
title: "Bot Deploy", description: "Deployment", imageSrc: "http://img.b2bpic.net/free-vector/options-business-solutions-diagram_1262-4270.jpg"},
]}
/>
</div>
@@ -80,14 +64,9 @@ export default function LandingPage() {
description="Choose best."
plans={[
{
id: "1",
badge: "A",
price: "$0",
subtitle: "Intro",
buttons: [],
id: "1", badge: "A", price: "$0", subtitle: "Intro", buttons: [],
features: [
"Feature 1",
],
"Feature 1"],
},
]}
/>
@@ -98,25 +77,17 @@ export default function LandingPage() {
logoText="AiViqo"
columns={[
{
title: "Agency",
items: [
title: "Agency", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Portfolio",
href: "/portfolio",
},
label: "Portfolio", href: "/portfolio"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}
@@ -125,4 +96,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}