{#if announcements.severity === "info"}
-
+
{:else}
-
+
{/if}
{dayjs
diff --git a/src/routes/projects.svelte b/src/routes/projects.svelte
index 1757a22..e34ff07 100644
--- a/src/routes/projects.svelte
+++ b/src/routes/projects.svelte
@@ -1,10 +1,6 @@
@@ -19,13 +15,13 @@
{#if website}
-
+
{/if}
{#if github}
-
+
{/if}
diff --git a/src/routes/team.svelte b/src/routes/team.svelte
index 2d73829..ba3c93f 100644
--- a/src/routes/team.svelte
+++ b/src/routes/team.svelte
@@ -1,13 +1,6 @@
@@ -22,43 +15,43 @@
{#if matrix}
-
+
{/if}
{#if discord}
-
+
{/if}
{#if github}
-
+
{/if}
{#if website}
-
+
{/if}
{#if email}
-
+
{/if}
{#if pgp}
-
+
{/if}
{#if picture}
-
+
{/if}
diff --git a/uno.config.ts b/uno.config.ts
new file mode 100644
index 0000000..dfecc53
--- /dev/null
+++ b/uno.config.ts
@@ -0,0 +1,14 @@
+import {
+ defineConfig,
+ presetIcons
+} from "unocss";
+
+import { extractorSvelte } from "unocss";
+
+export default defineConfig({
+ extractors: [extractorSvelte],
+
+ presets: [
+ presetIcons()
+ ]
+});
\ No newline at end of file
diff --git a/vite.config.js b/vite.config.js
index 27f1475..dc355c8 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -1,14 +1,12 @@
import { sveltekit } from "@sveltejs/kit/vite";
-import icons from "unplugin-icons/vite";
+import unoCSS from "unocss/vite";
+
/** @type {import('vite').UserConfig} */
const config = {
plugins: [
sveltekit(),
-
- icons({
- compiler: "svelte"
- })
+ unoCSS()
]
};