1- import { RedirectItem , Project } from "./types" ;
1+ import { Project , RedirectItem } from "./types" ;
22
33export const pages = [
44 "home" ,
@@ -21,92 +21,116 @@ export const redirects: RedirectItem[] = [
2121 slug : "github" ,
2222 destination : "https://github.com/jaspermayone" ,
2323 linkrelme : true ,
24+ slashToLink : true ,
2425 } ,
2526 {
2627 slug : "linkedin" ,
2728 destination : "https://www.linkedin.com/in/jaspermayone" ,
2829 linkrelme : true ,
30+ slashToLink : true ,
2931 } ,
3032 {
3133 slug : "bluesky" ,
3234 destination : "https://bsky.app/profile/jaspermayone.com" ,
3335 linkrelme : true ,
36+ slashToLink : true ,
3437 } ,
3538 {
3639 slug : "threads" ,
3740 destination : "https://www.threads.net/@jasper.mayone" ,
3841 linkrelme : true ,
42+ slashToLink : true ,
3943 } ,
4044 {
4145 slug : "x" ,
4246 destination : "https://x.com/jaspermayone" ,
4347 linkrelme : true ,
48+ slashToLink : true ,
4449 } ,
4550 {
4651 slug : "twitter" ,
4752 destination : "https://x.com/jaspermayone" ,
4853 linkrelme : true ,
54+ slashToLink : true ,
4955 } ,
5056 {
5157 slug : "youtube" ,
5258 destination : "https://www.youtube.com/@jasper.does.circus" ,
5359 linkrelme : true ,
60+ slashToLink : true ,
5461 } ,
5562 {
5663 slug : "buy-me-a-coffee" ,
5764 destination : "https://buymeacoffee.com/jaspermayone" ,
5865 linkrelme : true ,
66+ slashToLink : true ,
5967 } ,
6068 {
6169 slug : "reddit" ,
6270 destination : "https://www.reddit.com/user/j-dogcoder" ,
6371 linkrelme : true ,
72+ slashToLink : true ,
6473 } ,
6574 {
6675 slug : "matrix" ,
6776 destination : "https://matrix.to/#/@jasper.mayone:matrix.org" ,
6877 linkrelme : true ,
78+ slashToLink : true ,
6979 } ,
7080 {
7181 slug : "devto" ,
7282 destination : "https://dev.to/jaspermayone" ,
7383 linkrelme : true ,
84+ slashToLink : true ,
7485 } ,
7586 {
7687 slug : "hackerone" ,
7788 destination : "https://hackerone.com/jmayone" ,
7889 linkrelme : true ,
90+ slashToLink : true ,
7991 } ,
8092 {
8193 slug : "producthunt" ,
8294 destination : "https://www.producthunt.com/@jaspermayone" ,
8395 linkrelme : true ,
96+ slashToLink : true ,
8497 } ,
8598 {
8699 slug : "hackernews" ,
87100 destination : "https://news.ycombinator.com/user?id=jaspermayone" ,
88101 linkrelme : true ,
102+ slashToLink : true ,
89103 } ,
90104 {
91105 slug : "thingiverse" ,
92106 destination : "https://www.thingiverse.com/preamble6098/" ,
93107 linkrelme : true ,
108+ slashToLink : true ,
94109 } ,
95110 {
96111 slug : "keyoxide" ,
97112 destination :
98113 "https://keyoxide.org/00E643C21FAC965FFB28D3B714D0D45A1DADAAFA" ,
99114 linkrelme : true ,
115+ slashToLink : true ,
100116 } ,
101117 {
102118 slug : "signal" ,
103119 destination : "https://signal.me/#eu/jaspermayone.10" ,
104120 linkrelme : true ,
121+ slashToLink : true ,
105122 } ,
106123 {
107124 slug : "instagram" ,
108125 destination : "https://www.instagram.com/jasper.mayone" ,
109126 linkrelme : true ,
127+ slashToLink : true ,
128+ } ,
129+ {
130+ slug : "theaterengine" ,
131+ destination : "https://theaterengine.com/artists/7449" ,
132+ slashToLink : false ,
133+ linkrelme : true ,
110134 } ,
111135] ;
112136
0 commit comments