added header

This commit is contained in:
paul
2024-09-08 21:58:53 +05:30
parent e9f44bfbee
commit b7f5ba05f4
3 changed files with 50 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ import Sidebar from './sidebar/sidebar'
import WidgetsContainer from './sidebar/widgetsContainer'
import UploadsContainer from './sidebar/uploadsContainer'
import Canvas from './canvas/canvas'
import Header from './components/header'
function App() {
@@ -32,10 +33,12 @@ function App() {
]
return (
<div className="tw-w-full tw-h-[100vh] tw-flex tw-bg-primaryBg">
<Sidebar tabs={tabs}/>
<Canvas />
<div className="tw-w-full tw-h-[100vh] tw-flex tw-flex-col tw-bg-primaryBg">
<Header className="tw-h-[6vh]"/>
<div className="tw-w-full tw-h-[94vh] tw-flex">
<Sidebar tabs={tabs}/>
<Canvas />
</div>
</div>
);
}