feat: Wire up brand kit — favicon, logos, and hero mark across all layouts

Copies brand assets to frontend/public (favicon.png, logo.png, logo-hero.png).
Updates index.html, LoginView, RegisterView, DashboardLayout sidebar, and
PublicLayout footer with proper branding.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell
2026-02-14 22:40:56 -05:00
parent 11e5d18f81
commit 72249279d6
8 changed files with 18 additions and 10 deletions

View File

@@ -1,12 +1,13 @@
<!doctype html>
<html lang="en">
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frontend</title>
<meta name="theme-color" content="#0a0a0a" />
<title>Corrosion Management</title>
</head>
<body>
<body class="bg-neutral-950">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>