chicken-box/index.html

26 lines
999 B
HTML
Raw Normal View History

2024-11-17 05:33:50 +00:00
<!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>