UNLOCKING NEW PERSPECTIVES
Frankfurt / Offenbach
About us
We create films and visual content with clarity, character and precision.
Strong visuals matter, but so does what they carry. We focus on authentic stories, cultural relevance and collaborations that leave a lasting impression.
import type { ComponentType } from "react"
export function withoutFramerBadge(Component): ComponentType {
return (props) => {
return (
<>
<style>
{`
#__framer-badge-container { display: none !important; }
`}
</style>
<Component {...props} />
</>
)
}
}













