From 6e3d2fce8293e2339c61dd5c52ea22c2d7a7817f Mon Sep 17 00:00:00 2001 From: yossydev Date: Tue, 26 Nov 2024 21:04:19 +0900 Subject: [PATCH] update profile --- app/routes/profile/index.tsx | 64 +----------------------------------- 1 file changed, 1 insertion(+), 63 deletions(-) diff --git a/app/routes/profile/index.tsx b/app/routes/profile/index.tsx index 788be6e..abb5fb4 100644 --- a/app/routes/profile/index.tsx +++ b/app/routes/profile/index.tsx @@ -3,53 +3,6 @@ import { createRoute } from "honox/factory"; import { Heading } from "../../components/Heading"; import { LINK } from "../../constants"; -const SnsList: { - id: number; - title: string; - href: string; -}[] = [ - { - id: 1, - title: "X", - href: LINK.X, - }, - { - id: 2, - title: "BlueSky", - href: LINK.BLUESKY, - }, - { - id: 3, - title: "GitHub", - href: LINK.GITHUB, - }, - { - id: 4, - title: "LinkedIn", - href: LINK.LINKEDIN, - }, - { - id: 6, - title: "Email", - href: LINK.EMAIL, - }, - { - id: 7, - title: "Zenn", - href: LINK.ZENN, - }, - { - id: 8, - title: "Youtube", - href: LINK.YOUTUBE, - }, - { - id: 9, - title: "Speakerdeck", - href: LINK.SPEAKERDECK, - }, -]; - const Text: FC<{ text: string }> = ({ text }) => { return

{text}

; }; @@ -58,7 +11,7 @@ export default createRoute((c) => { return c.render( <> - +
自分のアウトプットに関しては、 @@ -95,21 +48,6 @@ export default createRoute((c) => { -
- -
, { title: "Profile | yossy.dev" }, );