Update src/app/page.tsx

This commit is contained in:
2026-03-25 13:54:39 +00:00
parent cd37a4e186
commit 6d3fe20f8d

View File

@@ -37,9 +37,10 @@ export default function LandingPage() {
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Apply Now", id: "/application-form" }
{ name: "Apply Now", id: "/application-form" },
{ name: "Admin Dashboard", id: "/admin-dashboard" }
]}
button={{ text: "Schedule Viewing", href: "contact" }}
button={{ text: "Schedule Viewing", id: "contact" }}
/>
</div>
@@ -263,7 +264,8 @@ export default function LandingPage() {
{ label: "Executive Team", href: "#team" },
{ label: "Properties", href: "#properties" },
{ label: "Contact", href: "#contact" },
{ label: "Apply Now", href: "/application-form" }
{ label: "Apply Now", href: "/application-form" },
{ label: "Admin Dashboard", href: "/admin-dashboard" }
]
},
{
@@ -295,4 +297,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}