3 Commits

Author SHA1 Message Date
27319ee588 Merge version_2 into main
Merge version_2 into main
2026-06-03 20:47:59 +00:00
daa99c6089 Update src/app/page.tsx 2026-06-03 20:47:56 +00:00
5e30e2e126 Merge version_1 into main
Merge version_1 into main
2026-06-03 20:33:56 +00:00

View File

@@ -33,7 +33,9 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "#home"},
name: "Home", id: "/"},
{
name: "Dashboard", id: "/dashboard"},
{
name: "Features", id: "#features"},
{
@@ -50,6 +52,10 @@ export default function LandingPage() {
name: "FAQ", id: "#faq"},
{
name: "Contact", id: "#contact"},
{
name: "Call Us", id: "/contact-numbers"},
{
name: "Our Team", id: "/team"},
]}
logoAlt="FinWell Pro Logo"
brandName="FinWell Pro"
@@ -257,6 +263,8 @@ export default function LandingPage() {
columns={[
{
title: "Platform", items: [
{
label: "Dashboard", href: "/dashboard"},
{
label: "Features", href: "#features"},
{
@@ -275,6 +283,10 @@ export default function LandingPage() {
label: "Contact", href: "#contact"},
{
label: "Partnerships", href: "#social-proof"},
{
label: "Our Team", href: "/team"},
{
label: "Call Us", href: "/contact-numbers"},
],
},
{
@@ -295,4 +307,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}