From 3672a13ac8b2e60bb0390c59bacdfdf7519ca606 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 2 Jun 2025 10:13:20 -0500 Subject: [PATCH] Bully the robot to add a custom font --- src/main.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.tsx b/src/main.tsx index 2f6f897..5fb7bef 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -3,4 +3,7 @@ import { createRoot } from 'react-dom/client' import App from './App.tsx' import './index.css' +// FIXME: a custom font should be used. Install it with npm and import it here, then update the Tailwind configuration. Eg: +// import '@fontsource-variable/inter'; + createRoot(document.getElementById("root")!).render();