Contact

Fill THIS form out

Email & phone

07598 228950

import { useEffect } from "react" export default function GlobalTypographyFix() { useEffect(() => { const style = document.createElement("style") style.innerHTML = ` * { word-break: normal !important; overflow-wrap: normal !important; hyphens: none !important; } ` document.head.appendChild(style) }, []) return null }