Skip to content

Commit 910c17b

Browse files
committed
v0.1.0 Update webpage
1 parent 0b49c0e commit 910c17b

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
An easy-to-install Valheim dedicated server with a Web interface exposed in the Docker image.
44

5+
#### Features
6+
7+
- game process output
8+
- performance monitor
9+
- worlds management (upload, download, delete)
10+
- users management (admins, banned, permitted)
11+
12+
###
13+
514
![Screenshot](/screenshot.png "Screenshot")
615

716
### Installation
@@ -23,3 +32,7 @@ services:
2332
volumes:
2433
- ./valheim:/root/valheim
2534
```
35+
36+
### License
37+
38+
MIT

src/frontend/App.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import ErrorSnackbar from 'components/ErrorSnackbar'
77
import AuthDialog from 'components/AuthDialog'
88
import Container from 'components/Container'
99
import Header from 'components/Header'
10+
import Footer from 'components/Footer'
1011
import StatusCard from 'components/StatusCard'
1112
import OutputCard from 'components/OutputCard'
1213
import PerfCard from 'components/PerfCard'
@@ -54,6 +55,9 @@ export default () => (
5455
</Grid>
5556
</Grid>
5657
</Box>
58+
<Box mt={4} mb={4}>
59+
<Footer />
60+
</Box>
5761
</Container>
5862
</ConnectionProvider>
5963
</ThemeProvider>

src/frontend/components/Footer.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from 'react'
2+
import GitHubIcon from '@material-ui/icons/GitHub'
3+
import Button from '@material-ui/core/Button'
4+
5+
export default () => (
6+
<Button
7+
startIcon={<GitHubIcon />}
8+
component="a"
9+
href="https://github.com/fakundo/valheim-server"
10+
>
11+
valheim-server
12+
</Button>
13+
)

src/frontend/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import Typography from '@material-ui/core/Typography'
33

44
export default () => (
5-
<Typography variant="h4">
5+
<Typography variant="h5">
66
Valheim Server Dashboard
77
</Typography>
88
)

0 commit comments

Comments
 (0)