Title
Category
Client
Year
Overview
An event documentation of Shifting Futures by the Young German Philharmonic
For the Shifting Futures series by the Young German Philharmonic, we went behind the scenes of a truly unique setting - following the young musicians from rehearsal all the way to the after-party.
Credits
More Projects
import type { ComponentType } from "react"
export function withoutFramerBadge(Component): ComponentType {
return (props) => {
return (
<>
<style>
{`
#__framer-badge-container { display: none !important; }
`}
</style>
<Component {...props} />
</>
)
}
}