Add rough IdeHeader

relates to #360
This commit is contained in:
Kurt Hutten
2021-06-09 06:43:12 +10:00
parent 02460544bf
commit ab084e0d5a
3 changed files with 44 additions and 20 deletions

View File

@@ -1,30 +1,29 @@
import MainLayout from 'src/layouts/MainLayout'
import Seo from 'src/components/Seo/Seo'
import IdeToolbar from 'src/components/IdeToolbarNew'
import OutBound from 'src/components/OutBound'
import IdeHeader from 'src/components/IdeHeader'
const DevIdePage = ({ cadPackage }) => {
return (
<div className="h-screen flex flex-col">
<MainLayout shouldRemoveFooterInIde>
<Seo
title="new ide in development"
description="new ide in development"
lang="en-US"
/>
<div className="py-2 bg-pink-200">
<div className="mx-auto max-w-3xl">
We're still working on this. Since you're here, have a look what{' '}
<OutBound
className="text-pink-700"
to="https://github.com/Irev-Dev/cadhub/discussions/212"
>
we've got planned
</OutBound>
.
</div>
<Seo
title="new ide in development"
description="new ide in development"
lang="en-US"
/>
<IdeHeader />
<div className="py-2 bg-pink-200">
<div className="mx-auto max-w-3xl">
We're still working on this. Since you're here, have a look what{' '}
<OutBound
className="text-pink-700"
to="https://github.com/Irev-Dev/cadhub/discussions/212"
>
we've got planned
</OutBound>
.
</div>
</MainLayout>
</div>
<div className="flex-auto">
<IdeToolbar cadPackage={cadPackage} />
</div>