--- import directus from '../../lib/directus'; import { readSingleton } from '@directus/sdk'; const global = await directus.request(readSingleton('global')); const links = await directus.request(readSingleton('links')); const currentYear = new Date().getFullYear(); const navLinks = [ { text: 'Home', href: '/' }, { text: 'Blog', href: '/blog' }, { text: 'About', href: '/about' }, { text: 'RSS', href: '/rss' }, ]; const socialLinks = [ { name: 'GitHub', href: links.github, icon: ``, }, { name: 'Gitea', href: links.gitea, icon: ``, }, { name: 'LinkedIn', href: links.linkedin, icon: ``, }, ]; ---