About

Neon Eye Productions is a queer filmmaking company based in Edinburgh, with operations currently running between central belt Scotland, and London and surrounding areas. We started out in 2018 and have a strong track record of shooting live theatre performance, and all manner of live shows and events. 

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 }