feat: dashboard setup with passkey authentication
Scaffold Vite + React + TypeScript project with Tailwind CSS dark theme. Add Axios API client with JWT interceptor and auto-refresh, WebAuthn passkey auth flow (register/login), protected route wrapper, and React Router with public and protected routes.
This commit is contained in:
parent
f218865872
commit
f121f376ae
20 changed files with 5274 additions and 0 deletions
13
dashboard/src/index.css
Normal file
13
dashboard/src/index.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
@import "tailwindcss";
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
background-color: #0f172a;
|
||||
color: #e2e8f0;
|
||||
font-family: system-ui, -apple-system, sans-serif;
|
||||
}
|
||||
|
||||
#root {
|
||||
min-height: 100vh;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue