Title

Digital Eden

Digital Eden

Category

Short Film

Short Film

Client

None

None

Year

2022

2022

Overview

In a dystopian world marred by decay, Eva manages to break free into a virtual paradise she created for herself.

Credits

Director

Timo Schlenstedt

Timo Schlenstedt

DP

Julius Pfeiffer

Julius Pfeiffer

Producer

Marina Buzhala

Marina Buzhala

Production

HS Mainz

HS Mainz

Co-Production

Enlight Film

Enlight Film

import type { ComponentType } from "react"



export function withoutFramerBadge(Component): ComponentType {

return (props) => {

return (

<>

<style>

{`

#__framer-badge-container { display: none !important; }

`}

</style>



<Component {...props} />

</>

)

}

}