Skip to content

Commit

Permalink
feat: add twitter link
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitdalal committed Apr 20, 2024
1 parent 487db46 commit 6f8eb4c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ const URLS = {
blog: "https://blog.arpitdalal.dev",
github: "https://github.com/arpitdalal",
linkedin: "https://linkedin.com/in/arpitdalal",
twitter: "https://twitter.com/arpitdalal_dev",
mail: "mailto:[email protected]",
};

app.get("/", (_, res) => {
Expand Down Expand Up @@ -35,6 +37,13 @@ app.get("/linkedin", (_, res) => {
res.redirect(URLS.linkedin);
});

app.get("/x", (_, res) => {
res.redirect(URLS.twitter);
});
app.get("/twitter", (_, res) => {
res.redirect(URLS.twitter);
});

app.get("/healthcheck", (_, res) => {
res.send("OK");
});
Expand Down

0 comments on commit 6f8eb4c

Please sign in to comment.