Navi/frontend/index.html
小龙 4d36e80695 feat: 导航收藏网站 v1.0
- 左侧边栏分类导航
- 紫蓝渐变背景
- 精致卡片设计
- 网站增删改查、收藏功能
- 搜索过滤
- 后端: Flask + MySQL
- 前端: React + Vite
2026-04-06 14:42:37 +00:00

23 lines
650 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>导航收藏夹</title>
<style>
/* 系统字体栈 */
@font-face {
font-family: 'System UI';
font-style: normal;
font-weight: 400;
src: local('SF Pro Text'), local('Segoe UI'), local('Roboto'), local('Helvetica Neue'), local('Arial');
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>