import Hyperlink from "@/components/ui/Hyperlink"; import { getServices } from "@/lib/api/helpers/services"; import { Service } from "@/lib/api/types"; const defaultServices: Service[] = [ { id: null, title: "Git Repos", description: null, priority: 1, link: "dagemark.se/git", }, { id: null, title: "Nextcloud Drive", description: null, priority: 3, link: "dagemark.se/drive", }, { id: null, title: "Game Servers", description: null, priority: 4, link: "gserver.dagemark.se", }, { id: null, title: "Immich Album", description: null, priority: 5, link: "album.dagemark.se", }, { id: null, title: "Jellyfin Streaming", description: null, priority: 2, link: "streaming.dagemark.se", }, ]; export default async function Header() { let services = await getServices(); if (services.length < 1) { services = defaultServices; } return (
); }