Title
Category
Client
Year
Overview
Content series for Frankfurts culinary community
Often it’s the understated places that surprise the most. With Signature Dish 069, we showcase culinary highlights in Frankfurt - connecting local foodies with the spots they really need to know about.
Credits
Agency
Director / Editor
DP
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} />
</>
)
}
}


