Files
dreamweaver/.claude/specs/design/figma-html/theme-c/index.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

34 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DreamWeaver 原型入口</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page">
<div class="container" style="padding: 48px 0;">
<div class="hero">
<h1>DreamWeaver HTML 原型入口</h1>
<p>请选择页面进行导入或预览HTML to Figma</p>
<div class="grid grid-3 section">
<div class="card"><a href="login.html">登录 / 授权</a></div>
<div class="card"><a href="home.html">生成故事Home</a></div>
<div class="card"><a href="my-stories.html">我的故事(列表)</a></div>
<div class="card"><a href="story-detail.html">故事详情</a></div>
<div class="card"><a href="child-profiles.html">孩子档案(列表)</a></div>
<div class="card"><a href="child-profile-detail.html">孩子档案(详情)</a></div>
<div class="card"><a href="universes.html">故事宇宙(列表)</a></div>
<div class="card"><a href="universe-detail.html">故事宇宙(详情)</a></div>
<div class="card"><a href="push-settings.html">推送设置</a></div>
<div class="card"><a href="account-settings.html">账户设置</a></div>
<div class="card"><a href="admin-providers.html">管理后台Providers</a></div>
<div class="card"><a href="not-found.html">404 / 错误</a></div>
</div>
</div>
</div>
</div>
</body>
</html>