feat: update routing and navigation for system pages, enhance back to home button styles

This commit is contained in:
Firman Ramdhani
2026-01-26 11:45:03 +07:00
parent 9fc1ef029c
commit 52db305314
6 changed files with 12 additions and 6 deletions
@@ -24,7 +24,7 @@ export function ComingSoon(props: ComingSoonProps) {
<div className="mt-8 flex justify-center gap-3">
<a
href="/"
className="rounded-md bg-brand-900 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-800"
className="rounded-md bg-brand-500 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-400"
>
Back to Home
</a>
@@ -36,7 +36,7 @@ export function Forbidden(props: ForbiddenProps) {
{showActionsHome && (
<a
href="/"
className="rounded-md bg-brand-900 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-800"
className="rounded-md bg-brand-500 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-400"
>
Back to Home
</a>
@@ -25,7 +25,7 @@ export function Maintenance(props: MaintenanceProps) {
<div className="mt-8 flex justify-center gap-3">
<a
href="/"
className="rounded-md bg-brand-900 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-800"
className="rounded-md bg-brand-500 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-400"
>
Back to Home
</a>
@@ -31,7 +31,7 @@ export function NotFound(props: NotFoundProps) {
{showActionsHome && (
<a
href="/"
className="rounded-md bg-brand-900 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-800"
className="rounded-md bg-brand-500 px-5 py-2.5 text-sm font-medium text-white hover:bg-brand-400"
>
Back to Home
</a>