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( <>