Initial commit: anime-minimalist personal blog

- React 18 + Vite + React Router v6
- Glass morphism cards with rounded corners
- Dark/light theme toggle
- Article CRUD with localStorage persistence
- Search, admin panel (PIN: 2501), sakura petal canvas animation

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-01 18:10:59 +08:00
commit c5994759fb
59 changed files with 5582 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
.bar {
position: fixed;
top: 0;
left: 0;
height: 2px;
background: linear-gradient(90deg, var(--color-accent-strong), var(--color-accent));
z-index: 200;
transition: width 0.1s linear;
border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}