diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8992848..d31c672 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,4 +1,4 @@ -import { Navigate, Route, Router } from "@solidjs/router"; +import { A, Navigate, Route, Router } from "@solidjs/router"; import type { PluginListener } from "@tauri-apps/api/core"; import { listen } from "@tauri-apps/api/event"; import { readFile } from "@tauri-apps/plugin-fs"; @@ -23,12 +23,34 @@ import { sendImageFile } from "./network"; import { Image } from "./Image"; import { WithEntityDialog } from "./WithEntityDialog"; import { Gallery } from "./gallery"; +import { IconHome, IconPhoto, IconSearch } from "@tabler/icons-solidjs"; const currentPlatform = platform(); console.log("Current Platform: ", currentPlatform); -const AppWrapper: Component = ({ children }) => { - return
{children}
; +const AppWrapper: Component = (props) => { + return ( +
{props.children}
+ ); +}; + +const WithDock: Component = (props) => { + return ( +
+ {props.children} + +
+ ); }; export const App = () => { @@ -84,12 +106,14 @@ export const App = () => { - - - - + + + + + + + -