Files
dreamweaver/.claude/specs/design/figma-html/theme-c/not-found.html
zhangtuo e9d7f8832a Initial commit: clean project structure
- Backend: FastAPI + SQLAlchemy + Celery (Python 3.11+)
- Frontend: Vue 3 + TypeScript + Pinia + Tailwind
- Admin Frontend: separate Vue 3 app for management
- Docker Compose: 9 services orchestration
- Specs: design prototypes, memory system PRD, product roadmap

Cleanup performed:
- Removed temporary debug scripts from backend root
- Removed deprecated admin_app.py (embedded UI)
- Removed duplicate docs from admin-frontend
- Updated .gitignore for Vite cache and egg-info
2026-01-20 18:20:03 +08:00

21 lines
544 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page">
<div class="container" style="padding: 80px 0; text-align:center;">
<div class="hero">
<h1>404</h1>
<p>页面走丢了,回到生成故事开始吧。</p>
<button class="btn btn--primary">返回首页</button>
</div>
</div>
</div>
</body>
</html>