From 12814b380b06bf287fd4cbeb68e2f597816c847d Mon Sep 17 00:00:00 2001 From: Anton Date: Mon, 9 Oct 2023 20:16:08 +0200 Subject: [PATCH] updated to Utopia UI to alpha.23 --- index.html | 2 +- package-lock.json | 8 +- package.json | 2 +- public/3markers-globe.svg | 264 ++++++++++++++++++++++++++++++++++++++ public/vite.svg | 1 - src/App.tsx | 4 +- src/routes/sidebar.tsx | 1 + vite.config.ts | 2 +- 8 files changed, 274 insertions(+), 10 deletions(-) create mode 100644 public/3markers-globe.svg delete mode 100644 public/vite.svg diff --git a/index.html b/index.html index 482e28cd..4217eae8 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - + Utopia Game diff --git a/package-lock.json b/package-lock.json index 8a28d3d3..a20995f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.11.2", - "utopia-ui": "^3.0.0-alpha.22" + "utopia-ui": "^3.0.0-alpha.23" }, "devDependencies": { "@types/react": "^18.0.28", @@ -6685,9 +6685,9 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "node_modules/utopia-ui": { - "version": "3.0.0-alpha.22", - "resolved": "https://registry.npmjs.org/utopia-ui/-/utopia-ui-3.0.0-alpha.22.tgz", - "integrity": "sha512-1AUgQIaIqCBBbPjppiQ8m7V6viF3fEJlD/lydmJHkfmbiqQmAaA3ccZYsqMe3zfXpyU7RTPnv4ARBthna3hV5w==", + "version": "3.0.0-alpha.23", + "resolved": "https://registry.npmjs.org/utopia-ui/-/utopia-ui-3.0.0-alpha.23.tgz", + "integrity": "sha512-N+rV8mTtcJtQ9EvMI/VlUWFUp9Ou/VHlDm0fKuTDxODhGTDOqY/Cbs5344vwglGMSV3+V0h7c/801g2pUSZxZg==", "dependencies": { "@heroicons/react": "^2.0.17", "leaflet": "^1.9.4", diff --git a/package.json b/package.json index 040a2a4f..f5333741 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.11.2", - "utopia-ui": "^3.0.0-alpha.22" + "utopia-ui": "^3.0.0-alpha.23" }, "devDependencies": { "@types/react": "^18.0.28", diff --git a/public/3markers-globe.svg b/public/3markers-globe.svg new file mode 100644 index 00000000..e28b152f --- /dev/null +++ b/public/3markers-globe.svg @@ -0,0 +1,264 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/vite.svg b/public/vite.svg deleted file mode 100644 index e7b8dfb1..00000000 --- a/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index e7077272..96f95c85 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,4 @@ -import { AppShell, SideBar, Content, AuthProvider, Settings, Modal, LoginPage, SignupPage } from 'utopia-ui' +import { AppShell, SideBar, Content, AuthProvider, Settings, Modal, LoginPage, SignupPage, Quests } from 'utopia-ui' import { bottomRoutes, routes } from './routes/sidebar' import { Route, Routes } from 'react-router-dom' import MapContainer from "./pages/MapContainer" @@ -21,7 +21,7 @@ function App() { - {/** */ } + } /> } /> diff --git a/src/routes/sidebar.tsx b/src/routes/sidebar.tsx index 97814c77..ed7d629e 100644 --- a/src/routes/sidebar.tsx +++ b/src/routes/sidebar.tsx @@ -63,6 +63,7 @@ export const bottomRoutes = [ path: 'https://github.com/utopia-os/utopia-game', // url icon: , name: 'Github', // name that appear in Sidebar + blank: true } ] \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index 2334564d..356b24ba 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -13,7 +13,7 @@ export default defineConfig({ "name": "Utopia Game: The Real Life Manifestation Game", "icons": [ { - "src": "3markers.svg", + "src": "3markers-globe.svg", "sizes": "any", "type": "image/svg+xml" }