chore: add basic layout

This commit is contained in:
Mathias Schopmans
2024-02-12 14:41:29 +01:00
committed by Mathias Schopmans
parent f3979f2a2f
commit 57cdb91ec7
25 changed files with 2176 additions and 430 deletions

5
src/lib/config.ts Normal file
View File

@@ -0,0 +1,5 @@
import messages from "../../public/messages.json";
export function getAppName() {
return messages.radarName;
}

5
src/lib/data.ts Normal file
View File

@@ -0,0 +1,5 @@
import messages from "../../public/messages.json";
export function getMessages() {
return messages;
}

5
src/lib/utils.ts Normal file
View File

@@ -0,0 +1,5 @@
import { type ClassValue, clsx } from "clsx";
export function cn(...inputs: ClassValue[]) {
return clsx(inputs);
}