Skip to content

Commit

Permalink
🔗 links (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgarropy authored Dec 11, 2024
1 parent c969919 commit 9a5a857
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bradgarropy.com",
"version": "8.0.0",
"version": "8.1.0",
"description": "🏠 my home on the web",
"type": "module",
"keywords": [
Expand Down
5 changes: 5 additions & 0 deletions src/routes/linkedin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import {redirect} from "@remix-run/node"

export const loader = () => {
throw redirect("https://linkedin.com/in/bradgarropy")
}
5 changes: 5 additions & 0 deletions src/routes/twitter.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import {redirect} from "@remix-run/node"

export const loader = () => {
throw redirect("https://twitter.com/bradgarropy")
}
5 changes: 5 additions & 0 deletions src/routes/x.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import {redirect} from "@remix-run/node"

export const loader = () => {
throw redirect("https://x.com/bradgarropy")
}
5 changes: 5 additions & 0 deletions src/routes/youtube.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import {redirect} from "@remix-run/node"

export const loader = () => {
throw redirect("https://youtube.com/bradgarropy")
}

0 comments on commit 9a5a857

Please sign in to comment.