From b4e6f128d7104c74de4f57fd1ebe6051e65b52f3 Mon Sep 17 00:00:00 2001
From: Adam <2363879+adamdotdevin@users.noreply.github.com>
Date: Tue, 25 Nov 2025 10:45:13 -0600
Subject: fix: favicons across all web properties
---
packages/ui/src/components/favicon.tsx | 15 ++++--------
packages/ui/src/components/font.tsx | 44 ++++++++++++++++++++++++++++++++++
packages/ui/src/components/fonts.tsx | 44 ----------------------------------
3 files changed, 49 insertions(+), 54 deletions(-)
create mode 100644 packages/ui/src/components/font.tsx
delete mode 100644 packages/ui/src/components/fonts.tsx
(limited to 'packages/ui/src/components')
diff --git a/packages/ui/src/components/favicon.tsx b/packages/ui/src/components/favicon.tsx
index de32ed2af..dec18f1ad 100644
--- a/packages/ui/src/components/favicon.tsx
+++ b/packages/ui/src/components/favicon.tsx
@@ -1,19 +1,14 @@
import { Link, Meta } from "@solidjs/meta"
-import favicon96 from "../assets/favicon/favicon-96x96.png"
-import faviconSvg from "../assets/favicon/favicon.svg"
-import faviconIco from "../assets/favicon/favicon.ico"
-import appleTouchIcon from "../assets/favicon/apple-touch-icon.png"
-import siteWebmanifest from "../assets/favicon/site.webmanifest"
export const Favicon = () => {
return (
<>
-
-
-
-
+
+
+
+
+
-
>
)
}
diff --git a/packages/ui/src/components/font.tsx b/packages/ui/src/components/font.tsx
new file mode 100644
index 000000000..de2991096
--- /dev/null
+++ b/packages/ui/src/components/font.tsx
@@ -0,0 +1,44 @@
+import { Style, Link } from "@solidjs/meta"
+import geist from "../assets/fonts/geist.woff2"
+import tx02 from "../assets/fonts/tx-02.woff2"
+
+export const Font = () => {
+ return (
+ <>
+
+
+
+ >
+ )
+}
diff --git a/packages/ui/src/components/fonts.tsx b/packages/ui/src/components/fonts.tsx
deleted file mode 100644
index 0b28e8f3c..000000000
--- a/packages/ui/src/components/fonts.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import { Style, Link } from "@solidjs/meta"
-import geist from "../assets/fonts/geist.woff2"
-import tx02 from "../assets/fonts/tx-02.woff2"
-
-export const Fonts = () => {
- return (
- <>
-
-
-
- >
- )
-}
--
cgit v1.2.3