mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-07-26 15:11:35 +00:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { NextPage, Metadata } from "next";
|
|
import { Activity, ActivityData } from "@/components/pages/Home/Activity";
|
|
import { Profile } from "@/components/pages/Home/Profile";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "ホーム",
|
|
description: "tuna2134のホームページ",
|
|
};
|
|
|
|
const activities: ActivityData[] = [
|
|
{
|
|
title: "cecilia",
|
|
description: "Next.jsで作成したポートフォリオサイトです。",
|
|
url: "https://github.com/tuna2134/cecilia",
|
|
},
|
|
{
|
|
title: "Neody Networks",
|
|
description: "AS152873をはじめインフラをメインで運用しています。",
|
|
url: "https://neody.ad.jp",
|
|
},
|
|
{
|
|
title: "EtherIP",
|
|
description: "RustでRFC3378であるEtherIPを実装しました。",
|
|
url: "https://github.com/tuna2134/EtherIP",
|
|
},
|
|
];
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<>
|
|
<Profile />
|
|
<div>
|
|
<h3 className="text-xl font-bold mb-4">最近の活動</h3>
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
{activities.map((activity, index) => (
|
|
<Activity key={index} activity={activity} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Home;
|