1
0

Add temporary link service card

This commit is contained in:
2026-05-03 17:43:58 +02:00
parent a58b9dc551
commit afd50586ff
4 changed files with 40 additions and 3 deletions

View File

@@ -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.",
},
];