- Updated `index.html` to include Google Fonts for improved typography. - Refactored `App.vue` to utilize new font styles and added a white background for better contrast. - Redesigned `Home.vue` to introduce a navigation bar, a hero section with a new logo, and a structured dashboard layout for project simulation steps. - Added a new logo image `MiroFish_logo_left.jpeg` to enhance branding. - Improved overall styling and responsiveness across components for a more cohesive user experience.
17 lines
780 B
HTML
17 lines
780 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100..800&family=Space+Grotesk:wght@300..700&display=swap" rel="stylesheet">
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="MiroFish - 社交媒体舆论模拟系统" />
|
|
<title>MiroFish - 上传任意报告,模拟世界即刻开始</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|