links update

This commit is contained in:
Fractal-Tess
2022-11-07 13:52:24 +02:00
parent 9855bebe02
commit 234b05864c
6 changed files with 87 additions and 30 deletions

View File

@@ -1,3 +1,16 @@
import type { IconDefinition } from '@fortawesome/free-solid-svg-icons';
export const themes = ['dark', 'light'] as const;
export type Theme = typeof themes[number];
export type NavLink = {
target: {
href: string;
newTab?: boolean;
};
content: {
text?: string;
icon?: IconDefinition;
};
};