Navi/frontend/index.html
2026-04-06 18:44:40 +00:00

23 lines
643 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>EasyNavi</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>