Skip to content

Commit 9a5a857

Browse files
authored
πŸ”— links (#438)
1 parent c969919 commit 9a5a857

File tree

6 files changed

+23
-3
lines changed

6 files changed

+23
-3
lines changed

β€Žpackage-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bradgarropy.com",
3-
"version": "8.0.0",
3+
"version": "8.1.0",
44
"description": "🏠 my home on the web",
55
"type": "module",
66
"keywords": [

β€Žsrc/routes/linkedin.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import {redirect} from "@remix-run/node"
2+
3+
export const loader = () => {
4+
throw redirect("https://linkedin.com/in/bradgarropy")
5+
}

β€Žsrc/routes/twitter.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import {redirect} from "@remix-run/node"
2+
3+
export const loader = () => {
4+
throw redirect("https://twitter.com/bradgarropy")
5+
}

β€Žsrc/routes/x.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import {redirect} from "@remix-run/node"
2+
3+
export const loader = () => {
4+
throw redirect("https://x.com/bradgarropy")
5+
}

β€Žsrc/routes/youtube.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import {redirect} from "@remix-run/node"
2+
3+
export const loader = () => {
4+
throw redirect("https://youtube.com/bradgarropy")
5+
}

0 commit comments

Comments
Β (0)