Initial ui

This commit is contained in:
Jack Mechem 2026-03-25 23:33:09 -07:00
parent 526822335e
commit 4bfb87448f
18 changed files with 702 additions and 92 deletions

16
app/lib/links.ts Normal file
View file

@ -0,0 +1,16 @@
export interface AppLink {
name: string;
description: string;
href: string;
icon: string;
}
// Add new services here
export const LINKS: AppLink[] = [
{
name: "Syncthing",
description: "File synchronization",
href: "https://syncthing.jackmechem.dev",
icon: "⇄",
},
];