mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-07-27 07:31:33 +00:00
fixed
This commit is contained in:
@@ -1,5 +1,24 @@
|
||||
import { NextPage } from "next";
|
||||
import { NextPage, Metadata } from "next";
|
||||
import Image from "next/image";
|
||||
import { Activity, ActivityData } from "@/components/pages/Home";
|
||||
|
||||
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",
|
||||
},
|
||||
];
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return (
|
||||
@@ -21,6 +40,11 @@ const Home: NextPage = () => {
|
||||
</div>
|
||||
<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>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user