Add temporary link service card
This commit is contained in:
@@ -3,8 +3,9 @@ export type HubLink = {
|
||||
description: string;
|
||||
href: string;
|
||||
cta: string;
|
||||
icon: "gitea" | "github" | "steam" | "psn" | "xbox" | "switch";
|
||||
icon: "gitea" | "github" | "steam" | "psn" | "xbox" | "switch" | "link";
|
||||
accent?: "primary" | "default";
|
||||
warning?: string;
|
||||
};
|
||||
|
||||
export const hero = {
|
||||
@@ -62,3 +63,16 @@ export const playLinks: HubLink[] = [
|
||||
icon: "switch",
|
||||
},
|
||||
];
|
||||
|
||||
export const utilityLinks: HubLink[] = [
|
||||
{
|
||||
title: "Short Tiny Link to the Internet",
|
||||
description:
|
||||
"Short-lived URL helper powered by Kutt for quick shares, redirects, and temporary references.",
|
||||
href: "https://tinyurl.thelilfrog.com",
|
||||
cta: "Open Short Link",
|
||||
icon: "link",
|
||||
warning:
|
||||
"Tinyfied URLs can be unavailable at any moment. Use this service only to generate temporary links.",
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user