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();