Update src/app/page.tsx

This commit is contained in:
2026-03-25 13:52:57 +00:00
parent 0c7c0a3471
commit 760c1d2f6e

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>
);
}
}