Make the ide more full screen like

This commit is contained in:
Kurt Hutten
2021-03-21 15:30:27 +11:00
parent fef69917f5
commit ab394ed564
4 changed files with 26 additions and 22 deletions

View File

@@ -5,27 +5,31 @@ import OutBound from 'src/components/OutBound'
const DevIdePage = () => {
return (
<MainLayout>
<Seo
title="new ide in development"
description="new ide in development"
lang="en-US"
/>
<div className="py-4 bg-pink-200">
<div className="mx-auto max-w-6xl">
Woah, woah. You shouldn't be here! We're still working on this. Since
you've seen it now, have a look what{' '}
<OutBound
className="text-pink-700"
to="https://github.com/Irev-Dev/cadhub/discussions/212"
>
we've got planned
</OutBound>
.
<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-4 bg-pink-200">
<div className="mx-auto max-w-6xl">
Woah, woah. You shouldn't be here! We're still working on this.
Since you've seen it now, have a look what{' '}
<OutBound
className="text-pink-700"
to="https://github.com/Irev-Dev/cadhub/discussions/212"
>
we've got planned
</OutBound>
.
</div>
</div>
</MainLayout>
<div className="flex-auto">
<IdeToolbar />
</div>
<IdeToolbar />
</MainLayout>
</div>
)
}