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