diff --git a/README.md b/README.md index c6839c0..61ba36c 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ Minecraft analytics and anti/PieRay helper. +## Launcher + +![Launcher](images/launcher.png?raw=true "Launcher") + ## Analytics ![Analytics](images/analytics.png?raw=true "Analytics") diff --git a/images/1024fg.png b/images/1024fg.png new file mode 100644 index 0000000..474314d Binary files /dev/null and b/images/1024fg.png differ diff --git a/images/icons/blackstone.png b/images/icons/blackstone.png new file mode 100644 index 0000000..a289d99 Binary files /dev/null and b/images/icons/blackstone.png differ diff --git a/images/icons/deepslate.png b/images/icons/deepslate.png new file mode 100644 index 0000000..e866e04 Binary files /dev/null and b/images/icons/deepslate.png differ diff --git a/images/launcher.png b/images/launcher.png new file mode 100644 index 0000000..09f1fee Binary files /dev/null and b/images/launcher.png differ diff --git a/src/components/App.tsx b/src/components/App.tsx index 076bac6..7f1d91e 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -9,10 +9,12 @@ import { TabPanel, TabPanels, Box, - useColorModeValue, Avatar, Spacer, Tooltip, + ColorModeProvider, + ThemeProvider, + extendTheme, } from '@chakra-ui/react' import React from 'react' import { Analytics } from './Analytics' @@ -20,34 +22,58 @@ import { Launcher } from './Launcher' import { PieRayHelper } from './PieRayHelper' import { Waypoints } from './Waypoints' -function App() { +const theme = extendTheme({}) + +export function ThemedApp(props: { children: React.ReactNode }) { + return ( + + + + {props.children} + + + + ) +} + +export function App() { const [selectedTab, setSelectedTab] = React.useState(2) return ( setSelectedTab(index)} + style={{ backgroundColor: 'rgba(0, 0, 0, 0.4)' }} > - + - } + variant="ghost" + icon={} />   - Analytics - Anti/PieRay - Launcher - Strongholds - Waypoints + Analytics + Anti/PieRay + Launcher + Strongholds + Waypoints -