Update Redirect.tsx

This commit is contained in:
Gvidas Juknevičius 2024-03-19 15:23:32 +02:00 committed by GitHub
parent 0524b5e342
commit 24ca0727e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@ import { Route, Router, Routes, useParams } from "@solidjs/router";
const redirects = { const redirects = {
"github": "https://github.com/MCorange99", "github": "https://github.com/MCorange99",
"ko-fi": "https://ko-fi.com/mcorange", "ko-fi": "https://ko-fi.com/mcorange",
"mastadon": "https://river.group.lt/@mcorange", "mastadon": "https://bark.lgbt/@mcorange",
}; };
@ -26,4 +26,4 @@ export default () => {
function redirect(p: string) { function redirect(p: string) {
window.location.assign(p); window.location.assign(p);
} }