Skip to content

Commit

Permalink
feat: update contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
machnevegor committed May 19, 2023
1 parent 272499c commit 2acd8f1
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,27 @@ import { useCallback, useEffect, useRef, useState } from "react";

import Bio from "~/components/program/Bio.tsx";
import Choice from "~/components/program/Choice.tsx";
import type { Link } from "~/components/program/Contact.tsx";
import Contact from "~/components/program/Contact.tsx";
import Welcome from "~/components/program/Welcome.tsx";
import Caret from "~/components/terminal/Caret.tsx";
import Hint from "~/components/terminal/Hint.tsx";
import Line from "~/components/terminal/Line.tsx";
import Terminal from "~/components/terminal/Terminal.tsx";

const LINKS = [
{ title: "GitHub", url: "https://github.com/machnevegor" },
{ title: "Telegram", url: "https://t.me/machnevegor" },
{ title: "Twitter", url: "https://twitter.com/machnevegor" },
const LINKS: Link[] = [
{
title: "GitHub",
url: "https://github.com/machnevegor",
},
{
title: "Telegram",
url: "https://t.me/machnevegor",
},
{
title: "Twitter",
url: "https://twitter.com/machnevegor",
},
];

export default function Index() {
Expand Down

0 comments on commit 2acd8f1

Please sign in to comment.