diff --git a/pages/embed.tsx b/pages/embed.tsx index df25781..9175cd8 100644 --- a/pages/embed.tsx +++ b/pages/embed.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react' import { SandpackFiles } from '@codesandbox/sandpack-react' import { generate } from '../utils/helper' import BrowserPreview from '../components/BrowserPreview' +import { AppPage } from '../components/AppPage' const Embed = () => { const [files, setFiles] = useState({}) @@ -27,16 +28,44 @@ const Embed = () => { }, []) return ( -
- - -
+ +
+ {Object.keys(files || {}).length > 0 && ( + + )} + {Object.keys(files || {}).length === 0 && ( +
+ Teleport HQ + Listening for updates +
+ )} + +
+
) } diff --git a/public/static/svg/hero.svg b/public/static/svg/hero.svg new file mode 100644 index 0000000..7a490ea --- /dev/null +++ b/public/static/svg/hero.svg @@ -0,0 +1 @@ +Teleport_Hero_Color \ No newline at end of file diff --git a/public/static/svg/logo_white.svg b/public/static/svg/logo_white.svg new file mode 100644 index 0000000..3af827f --- /dev/null +++ b/public/static/svg/logo_white.svg @@ -0,0 +1 @@ +Teleport_Logo \ No newline at end of file