diff --git a/src/components/CanvasSection.tsx b/src/components/CanvasSection.tsx index 48cba8f..de5e4ab 100644 --- a/src/components/CanvasSection.tsx +++ b/src/components/CanvasSection.tsx @@ -7,7 +7,7 @@ export const CanvasSection = () => { return (
- {!wasm ? null : } + {/* {!wasm ? null : } */}
) diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 990a8ee..f7cba0e 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,7 +1,13 @@ -export const Header = () => { +interface HeaderProps { + className?: string +} + +export const Header: React.FC = ({ + className = '' +}) => { return ( -
-

DISPLACEMENT

+
+

DISPLACEMENT

) } diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 959ec1d..35294b5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,11 +9,11 @@ export const Layout: React.FC = ({ children, }) => { return ( -
+ <>
-
+
{children}
-
+ ) } diff --git a/src/pages/index.tsx b/src/pages/index.tsx index b642679..12c8dbb 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,19 +1,34 @@ import type { NextPage } from 'next' import { BottomBarSection } from '../components/BottomBarSection'; import { CanvasSection } from '../components/CanvasSection' +import { Header } from '../components/Header'; import { Layout } from '../components/Layout'; import { SectionsContainer } from '../components/SectionsContainer'; import { SettingsSection } from '../components/SettingsSection'; const Home: NextPage = () => { return ( - - } - secondary={} - bottomBar={} - /> - + <> +
+

DISPLACEMENT

+
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+ ) }