52 lines
2.5 KiB
HTML
52 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>人生轨迹 - 开心APP</title>
|
|
<link rel="icon" href="https://r2.flowith.net/files/o/1752574406770-thoughtful_kaikai_character_generation_index_1@1024x1024.png">
|
|
<script src="https://cdn.tailwindcss.com?plugins=typography"></script>
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
<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=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-light-gray font-sans text-text-dark flex flex-col h-screen antialiased">
|
|
|
|
<!-- Header -->
|
|
<header class="bg-white shadow-md z-10 flex-shrink-0">
|
|
<div class="container mx-auto px-4 py-3 flex items-center justify-between relative">
|
|
<div class="flex items-center space-x-4">
|
|
<a href="index.html" class="text-text-medium hover:text-tech-blue transition-colors">
|
|
<i data-lucide="home" class="w-6 h-6"></i>
|
|
</a>
|
|
<a href="messages.html" class="text-text-medium hover:text-tech-blue transition-colors">
|
|
<i data-lucide="bell" class="w-6 h-6"></i>
|
|
</a>
|
|
</div>
|
|
<h1 class="text-lg font-bold text-text-dark absolute left-1/2 -translate-x-1/2">人生轨迹</h1>
|
|
<a href="settings.html" class="text-text-medium hover:text-tech-blue transition-colors">
|
|
<i data-lucide="user" class="w-6 h-6"></i>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="flex-1 overflow-y-auto p-4 lg:p-6 flex items-center justify-center pb-24">
|
|
<div class="text-center">
|
|
<i data-lucide="milestone" class="w-16 h-16 mx-auto text-gray-300"></i>
|
|
<h2 class="mt-4 text-xl font-semibold text-text-dark">记录你的人生轨迹</h2>
|
|
<p class="mt-2 text-text-medium">重要的时刻、达成的目标、难忘的经历...都在这里汇集。</p>
|
|
<p class="mt-1 text-text-medium">此功能正在建设中,敬请期待!</p>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- App Navigation -->
|
|
<div id="bottom-nav-placeholder"></div>
|
|
|
|
<script type="module" src="js/app_nav.js"></script>
|
|
<script type="module" src="life_milestones.js"></script>
|
|
</body>
|
|
</html>
|