26 lines
999 B
HTML
26 lines
999 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<meta name="description" content="鸡音盒" />
|
||
|
<title>鸡音盒</title>
|
||
|
|
||
|
<link rel="stylesheet" href="/src/style.css" />
|
||
|
<script type="module" src="/src/main.ts"></script>
|
||
|
</head>
|
||
|
<body class="dark:bg-neutral-900">
|
||
|
<div class="flex flex-col min-h-screen justify-center items-center gap-8">
|
||
|
<a href="https://git.ny4.dev/nyancat/chicken-box">
|
||
|
<img src="/cxk.webp" alt="鸡音盒" class="size-32" />
|
||
|
</a>
|
||
|
<div class="inline-flex rounded-lg shadow-sm">
|
||
|
<button type="button" class="chicken-button" id="chicken">鸡</button>
|
||
|
<button type="button" class="chicken-button" id="you">你</button>
|
||
|
<button type="button" class="chicken-button" id="so">太</button>
|
||
|
<button type="button" class="chicken-button" id="beautiful">美</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|