server-dash/app/lib/links.ts
2026-03-25 23:33:09 -07:00

16 lines
285 B
TypeScript

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: "⇄",
},
];