Initial commit

This commit is contained in:
tuna2134
2025-04-28 02:01:44 +00:00
commit 65ba0bd083
18 changed files with 1174 additions and 0 deletions

19
app/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
import Timeline from "@/components/pages/home/timeline";
import Header from "@/components/pages/home/header";
export default function Home() {
return (
<>
<Header />
<div className="mx-auto max-w-3xl px-4">
<Timeline timeline={[
{
title: "sbv2-api 誕生",
datetime: "2025/09",
description: "Discord botに組み込めたら面白いと思って開発を開始して作った。"
},
]} />
</div>
</>
);
}