Merge version_22 into main

Merge version_22 into main
This commit was merged in pull request #44.
This commit is contained in:
2026-03-12 23:26:46 +00:00
4 changed files with 34 additions and 36 deletions

View File

@@ -26,9 +26,9 @@ export default function AboutPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "/services" },
{ name: "Work", id: "#portfolio" },
{ name: "About", id: "/about" },
{ name: "Services", id: "#services" },
{ name: "Process", id: "process" },
{ name: "Contact", id: "/contact" }
]}
brandName="Vero AI"
@@ -133,7 +133,7 @@ export default function AboutPage() {
columns={[
{
title: "Product", items: [
{ label: "Services", href: "#services" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "#portfolio" }
]
},
@@ -151,8 +151,8 @@ export default function AboutPage() {
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }
{ label: "Privacy", href: "#privacy" },
{ label: "Terms", href: "#terms" }
]
}
]}
@@ -161,4 +161,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -32,9 +32,9 @@ export default function AIAutomationPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Services", id: "/services" },
{ name: "AI Automation", id: "/ai-automation" },
{ name: "AI Marketing", id: "/ai-marketing" },
{ name: "Contact", id: "contact" }
{ name: "Work", id: "#portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="Vero AI"
bottomLeftText="Vero Marketing AI"
@@ -169,29 +169,27 @@ export default function AIAutomationPage() {
logoText="Vero AI"
columns={[
{
title: "Services", items: [
title: "Product", items: [
{ label: "Services", href: "/services" },
{ label: "AI Automation", href: "/ai-automation" },
{ label: "AI Marketing", href: "/ai-marketing" }
{ label: "Work", href: "#portfolio" }
]
},
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Contact", href: "#contact" }
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Connect", items: [
{ label: "Email", href: "mailto:hello@veroai.com" },
{ label: "Instagram", href: "https://www.instagram.com/veromarketingai?igsh=aWNpYmdiczJ2Y2Zw&utm_source=qr" },
{ label: "Twitter", href: "https://twitter.com" }
{ label: "Instagram", href: "https://www.instagram.com/veromarketingai?igsh=aWNpYmdiczJ2Y2Zw&utm_source=qr" }
]
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }
{ label: "Privacy", href: "#privacy" },
{ label: "Terms", href: "#terms" }
]
}
]}
@@ -200,4 +198,4 @@ export default function AIAutomationPage() {
</div>
</ThemeProvider>
);
}
}

View File

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

View File

@@ -33,7 +33,8 @@ export default function ServicesPage() {
navItems={[
{ name: "Services", id: "/services" },
{ name: "Work", id: "#portfolio" },
{ name: "Contact", id: "#contact" }
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="Vero AI"
bottomLeftText="Vero Marketing AI"
@@ -168,28 +169,27 @@ export default function ServicesPage() {
logoText="Vero AI"
columns={[
{
title: "Services", items: [
{ label: "AI Automation", href: "/services" },
{ label: "Web Design", href: "/services" },
{ label: "AI Marketing", href: "/services" }
title: "Product", items: [
{ label: "Services", href: "/services" },
{ label: "Work", href: "#portfolio" }
]
},
{
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "Work", href: "#portfolio" }
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Connect", items: [
{ label: "Email", href: "mailto:hello@veroai.com" },
{ label: "Instagram", href: "https://instagram.com" }
{ label: "Instagram", href: "https://www.instagram.com/veromarketingai?igsh=aWNpYmdiczJ2Y2Zw&utm_source=qr" }
]
},
{
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }
{ label: "Privacy", href: "#privacy" },
{ label: "Terms", href: "#terms" }
]
}
]}
@@ -198,4 +198,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}