simple new blog

This commit is contained in:
2026-01-15 17:19:43 +09:00
parent b344a0a760
commit cf46369cd0
52 changed files with 1590 additions and 3174 deletions

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ailog</title>
<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>