feat(branding): add RoadMonitor logo and update auth/sidebar branding

This commit is contained in:
2026-06-24 12:54:33 +05:30
parent 2fc01f74e2
commit 82050372c6
9 changed files with 102 additions and 14 deletions

View File

@@ -31,7 +31,7 @@ function ForgotPasswordContent() {
<div className="flex h-screen flex-1 items-center justify-center border-l border-border p-6 md:w-[60%]">
<section className="w-full max-w-sm space-y-7">
<header className="space-y-2 text-center md:text-left">
<p className="text-muted-foreground">VisionRoad</p>
<p className="text-muted-foreground">RoadMonitor</p>
<h1>{displayInfo.title}</h1>
<p className="text-muted-foreground">{displayInfo.description}</p>
</header>
@@ -60,7 +60,11 @@ function ForgotPasswordContent() {
className="w-full"
disabled={isLoading || !canSubmit}
>
{isLoading ? <Loader2 className="size-4 animate-spin" /> : <Send />}
{isLoading ? (
<Loader2 className="size-4 animate-spin" />
) : (
<Send />
)}
{displayInfo.buttonLabel}
</Button>