Bully the robot to add a custom font

This commit is contained in:
Alex Gleason 2025-06-02 10:13:20 -05:00
parent ac46749fad
commit 3672a13ac8
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -3,4 +3,7 @@ import { createRoot } from 'react-dom/client'
import App from './App.tsx' import App from './App.tsx'
import './index.css' 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(<App />); createRoot(document.getElementById("root")!).render(<App />);