Skip to content

Commit 20da566

Browse files
committed
feat(Sessions): セッション一覧ページを作成
1 parent 0cae3e8 commit 20da566

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

2025/src/pages/sessions.astro

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
import "../styles/global.css";
3+
import Layout from "../layouts/Layout.astro";
4+
import Sessions from "../components/Sessions/index.astro";
5+
---
6+
7+
<Layout>
8+
<main class="mt-5 min-h-screen">
9+
<Sessions />
10+
</main>
11+
</Layout>

0 commit comments

Comments
 (0)