Title
Category
Client
Year
Overview
A Sony spec project produced by 80 White
We visualize a desire everyone knows: returning to a memory. We place special emphasis on closeness and authenticity. We don’t just portray a situation, but a feeling - taking the audience into the memories of our protagonists.
Credits
Production
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} />
</>
)
}
}


