Files
cecilia/app/page.tsx
tuna2134@コマリン親衛隊 badae02f43 Update page.tsx
2025-04-28 15:12:41 +09:00

25 lines
749 B
TypeScript

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に組み込めたら面白いと思って開発を開始して作った。"
},
{
title: "New! ウェブサイト6代目開発開始",
datetime: "2025/04",
description: "前のサイトを変えたくなった。そして再び一から作ることにした。"
},
]} />
</div>
</>
);
}