-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·86 lines (86 loc) · 2.58 KB
/
index.html
File metadata and controls
executable file
·86 lines (86 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="zh-CN" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ArcadeArchTools</title>
<link
rel="icon"
type="image/png"
href="https://s2.loli.net/2025/10/26/Cuj3zOnHGLJRf58.png"
/>
<link
rel="apple-touch-icon"
href="https://s2.loli.net/2025/10/26/Cuj3zOnHGLJRf58.png"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
},
},
};
</script>
<script>
(function () {
const _warn = console.warn.bind(console);
console.warn = function (...args) {
try {
if (
args &&
args[0] &&
String(args[0]).includes(
"cdn.tailwindcss.com should not be used in production"
)
) {
return;
}
} catch (e) {}
_warn(...args);
};
})();
</script>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body class="bg-gray-900">
<div id="app">
<header>
<nav class="container mx-auto max-w-5xl px-6 py-4 flex items-center justify-between">
<div class="flex items-center gap-6">
<span class="text-2xl font-extrabold text-indigo-400">ArcadeArchTools</span>
<a href="#home" class="nav-link text-gray-300 hover:text-indigo-400">主页</a>
<a href="#chuni" class="nav-link text-gray-300 hover:text-indigo-400">中二</a>
<a href="#ongeki" class="nav-link text-gray-300 hover:text-indigo-400">音击</a>
</div>
</nav>
</header>
<main
id="page-content"
class="flex-grow container mx-auto max-w-5xl p-6 md:p-10"
></main>
<footer class="text-center p-6 text-gray-500 text-sm"></footer>
</div>
<script type="module" src="./assets/js/app.js"></script>
</body>
</html>