1
0

first commit

This commit is contained in:
2026-04-18 22:04:54 +02:00
commit 46256b764b
16 changed files with 3862 additions and 0 deletions

64
src/data/links.ts Normal file
View File

@@ -0,0 +1,64 @@
export type HubLink = {
title: string;
description: string;
href: string;
cta: string;
icon: "gitea" | "github" | "steam" | "psn" | "xbox" | "switch";
accent?: "primary" | "default";
};
export const hero = {
eyebrow: "Welcome",
title: "thelilfrog.com",
subtitle: "Code and places to play.",
hostname: "thelilfrog.com",
};
export const codeLinks: HubLink[] = [
{
title: "Gitea",
description: "Primary forge for repositories, issues, and the home copy of everything.",
href: "https://git.thelilfrog.com",
cta: "Open Gitea",
icon: "gitea",
accent: "primary",
},
{
title: "GitHub",
description: "Public mirror for backup visibility, collaboration, and easy sharing.",
href: "https://github.com/thelilfrog",
cta: "View Mirror",
icon: "github",
},
];
export const playLinks: HubLink[] = [
{
title: "Steam",
description: "PC library, profile, and the usual late-night backlog.",
href: "https://steamcommunity.com/id/thelilfrog",
cta: "Visit Steam",
icon: "steam",
},
{
title: "PSN",
description: "PlayStation profile for trophies, sessions, and console favorites.",
href: "https://psnprofiles.com/thelilfrog",
cta: "Open PSN",
icon: "psn",
},
{
title: "Xbox",
description: "Gamertag hub for achievements, multiplayer, and cloud saves.",
href: "https://account.xbox.com/en-us/profile?gamertag=thelilfrog",
cta: "Open Xbox",
icon: "xbox",
},
{
title: "Nintendo Switch",
description: "Friend code landing spot for handheld sessions and couch co-op.",
href: "https://lounge.nintendo.com/friendcode/2726-3500-6033/CyfSj4RsBV",
cta: "Open Switch",
icon: "switch",
},
];