This commit is contained in:
2026-01-15 18:36:41 +09:00
commit 162072d980
24 changed files with 2153 additions and 0 deletions

22
index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>syui.ai</title>
<link rel="icon" href="/favicon.png" type="image/png">
<link rel="stylesheet" href="/src/styles/main.css">
</head>
<body>
<div id="app">
<header id="header"></header>
<main>
<section id="profile"></section>
<nav id="tabs"></nav>
<section id="content"></section>
</main>
<footer id="footer"></footer>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>