Spaces:
Sleeping
Sleeping
File size: 522 Bytes
73e9550 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import { useEffect } from "react"
const FONTS = [
"https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Instrument+Serif:ital@0;1&display=swap",
]
export default function FontLoader() {
useEffect(() => {
FONTS.forEach((href) => {
if (document.querySelector(`link[href="${href}"]`)) return
const link = document.createElement("link")
link.rel = "stylesheet"
link.href = href
document.head.appendChild(link)
})
}, [])
return null
}
|