First real commit

This commit is contained in:
zuma 2025-03-12 17:44:13 +01:00
parent 1947b908a6
commit 107d33c908
30 changed files with 2583 additions and 1 deletions

1
src/lib/index.ts Normal file
View file

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

1
src/lib/router.tsx Normal file
View file

@ -0,0 +1 @@
export const basePath = (import.meta.env.MODE == "development") ? "http://localhost:8080" : (window.BASE_PATH || "")

6
src/lib/utils.ts Normal file
View file

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