mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-02-06 14:42:40 +00:00
Initial commit
This commit is contained in:
19
app/page.tsx
Normal file
19
app/page.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user