diff --git a/src/Layout.tsx b/src/Layout.tsx
index fae8e2c..252ebfa 100644
--- a/src/Layout.tsx
+++ b/src/Layout.tsx
@@ -1,15 +1,6 @@
import { Icon } from '@iconify-icon/solid';
import { A } from '@solidjs/router';
-import { Component, ParentComponent } from 'solid-js';
-import { Portal } from 'solid-js/web';
-
-const WindowDragHandle: Component = () => {
- return (
-
-
-
- );
-};
+import { ParentComponent } from 'solid-js';
interface NavigationLinkProps {
href: string;
@@ -20,7 +11,7 @@ const NavigateLink: ParentComponent = (props) => {
{props.children}
@@ -30,9 +21,15 @@ const NavigateLink: ParentComponent = (props) => {
const Layout: ParentComponent = (props) => {
return (
-
+
-
{props.children}
+
{props.children}
-
);
};