This commit is contained in:
tuna2134
2025-04-29 21:31:34 +00:00
parent ac705d36b0
commit 22109ff516
6 changed files with 98 additions and 96 deletions

View File

@@ -3,32 +3,32 @@ import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "tuna2134",
description: "tuna2134 official website",
title: "tuna2134",
description: "tuna2134 official website",
};
export default function RootLayout({
children,
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode;
}>) {
return (
<html lang="ja">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
return (
<html lang="ja">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}

View File

@@ -2,32 +2,33 @@ import Timeline from "@/components/pages/home/timeline";
import Header from "@/components/pages/home/header";
export default function Home() {
return (
<>
<Header />
<div className="mt-6 mx-auto max-w-3xl px-4">
<Timeline
timeline={[
{
title: "プログラミングの世界に入り込む",
datetime: "2020/07",
description: "Discord Botを作るためにPythonを学び始めた。",
},
{
title: "sbv2-api 誕生",
datetime: "2025/09",
description:
"Discord botに組み込めたら面白いと思って開発を開始して作った。",
},
{
title: "New! ウェブサイト6代目開発開始(Proj C)",
datetime: "2025/04",
description:
"前のサイトを変えたくなった。そして再び一から作ることにした。",
},
]}
/>
</div>
</>
);
return (
<>
<Header />
<div className="mt-6 mx-auto max-w-3xl px-4">
<Timeline
timeline={[
{
title: "プログラミングの世界に入り込む",
datetime: "2020/07",
description:
"Discord Botを作るためにPythonを学び始めた。",
},
{
title: "sbv2-api 誕生",
datetime: "2025/09",
description:
"Discord botに組み込めたら面白いと思って開発を開始して作った。",
},
{
title: "New! ウェブサイト6代目開発開始(Proj C)",
datetime: "2025/04",
description:
"前のサイトを変えたくなった。そして再び一から作ることにした。",
},
]}
/>
</div>
</>
);
}