Initial ui
This commit is contained in:
parent
526822335e
commit
4bfb87448f
18 changed files with 702 additions and 92 deletions
16
app/lib/links.ts
Normal file
16
app/lib/links.ts
Normal 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: "⇄",
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue