Update src/app/page.tsx

This commit is contained in:
2026-03-10 15:25:23 +00:00
parent 080834c69e
commit cdcd1a083f

View File

@@ -33,7 +33,7 @@ export default function HomePage() {
brandName="Kenya Online Jobs Hub"
navItems={[
{ name: "Home", id: "/" },
{ name: "Jobs", id: "/jobs" },
{ name: "Jobs", id: "latest-jobs" },
{ name: "Resources", id: "/resources" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
@@ -55,7 +55,7 @@ export default function HomePage() {
showDimOverlay={true}
buttons={[
{
text: "Browse Jobs", href: "/jobs"
text: "Browse Jobs", href: "latest-jobs"
},
{
text: "Learn More", href: "/about"
@@ -266,7 +266,7 @@ export default function HomePage() {
text: "Subscribe Now", href: "/contact"
},
{
text: "View All Jobs", href: "/jobs"
text: "View All Jobs", href: "latest-jobs"
}
]}
background={{
@@ -287,20 +287,20 @@ export default function HomePage() {
label: "About Us", href: "/about"
},
{
label: "How It Works", href: "/#how-it-works"
label: "How It Works", href: "#how-it-works"
},
{
label: "Contact", href: "/contact"
},
{
label: "Blog", href: "/#resources-section"
label: "Blog", href: "#resources-section"
}
]
},
{
title: "For Job Seekers", items: [
{
label: "Browse Jobs", href: "/jobs"
label: "Browse Jobs", href: "#latest-jobs"
},
{
label: "Resources", href: "/resources"
@@ -350,4 +350,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}