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

BIN
app/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

26
app/globals.css Normal file
View File

@@ -0,0 +1,26 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}

34
app/layout.tsx Normal file
View File

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

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>
</>
);
}