Update src/app/page.tsx

This commit is contained in:
2026-03-11 21:11:39 +00:00
parent 2700b7bbe6
commit 9229adddd1

View File

@@ -30,10 +30,11 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Features", id: "features-bento" },
{ name: "Pricing", id: "pricing" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" },
{ name: "Solutions", id: "features-hover" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Try Free", id: "/try-free" }
]}
brandName="AISync"
bottomLeftText="Global AI Innovation"
@@ -249,7 +250,7 @@ export default function LandingPage() {
title="Ready to transform your AI strategy?"
description="Join thousands of companies using AISync to build, deploy, and scale AI applications. Start your free trial today—no credit card required."
buttons={[
{ text: "Start free trial", href: "#" },
{ text: "Start free trial", href: "/try-free" },
{ text: "Schedule a demo", href: "#" }
]}
background={{ variant: "plain" }}
@@ -265,7 +266,7 @@ export default function LandingPage() {
{
title: "Product", items: [
{ label: "Features", href: "#features-bento" },
{ label: "Pricing", href: "#pricing" },
{ label: "Pricing", href: "/pricing" },
{ label: "Documentation", href: "#" },
{ label: "API Reference", href: "#" }
]
@@ -299,4 +300,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}