Add an alert about stopping updating in-game data

This commit is contained in:
Sakura Knoll
2023-09-17 21:14:58 +09:00 Unverified
parent 5b25c616ad
commit cae35ab79e
+14 -1
View File
@@ -40,9 +40,21 @@ const Honkai3rdLayout: React.FC = ({ children }) => {
<Flex <Flex
sx={{ sx={{
height: '100%', height: '100%',
overflow: 'hidden' overflow: 'hidden',
flexDirection: 'column'
}} }}
> >
<Box sx={{ flexShrink: 0, px: 3 }}>
<h3>We have decided to stop updating in-game data since v6.9</h3>
<p>
This is because we cannot extract in-game data anymore. If you can help us to extract the data, please join
our discord channel and ping @s4kuraknoll.{' '}
<a href="https://discord.gg/UnrM9T9PRs" target="_blank" rel="noreferrer">
https://discord.gg/UnrM9T9PRs
</a>
</p>
</Box>
<Flex sx={{ flexGrow: 1 }}>
<Box <Box
sx={{ sx={{
width: ['100%', 240], width: ['100%', 240],
@@ -100,6 +112,7 @@ const Honkai3rdLayout: React.FC = ({ children }) => {
{children} {children}
</Box> </Box>
</Flex> </Flex>
</Flex>
) )
} }