import { Navigate, Route, Router } from "@solidjs/router"; import { onAndroidMount } from "./mobile"; import { FrontPage, Gallery, ImagePage, Login, Settings, Entity, SearchPage, AllImages, } from "./pages"; import { SearchImageContextProvider } from "@contexts/SearchImageContext"; import { WithNotifications } from "@contexts/Notifications"; import { ProtectedRoute } from "@components/protected-route"; import { AppWrapper } from "@components/app-wrapper"; import { WithTopbarAndDock } from "@components/app-wrapper/with-topbar-and-dock"; import { onSendImage } from "@contexts/send-image"; export const App = () => { onAndroidMount(); onSendImage(); return ( } /> ); };