Skip to content

Commit

Permalink
chore: more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepolo committed Oct 24, 2024
1 parent 3f1bb71 commit 7695cfa
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@ export default defineConfig({

],

search: {
provider: 'local'
},

lastUpdated: {
text: 'Updated at',
formatOptions: {
dateStyle: 'full',
timeStyle: 'medium'
}
},

editLink: {
pattern: 'https://github.com/5stackgg/docs/edit/main/:path'
},

socialLinks: [
{ icon: 'discord', link: 'https://5stack.gg/discord-invite' },
{ icon: 'github', link: 'https://github.com/5stackgg/docs/' }
Expand Down
26 changes: 26 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,29 @@ features:
details: Create regions for matchmaking, including LAN support
- title: Storage Solutions
details: Store demos and backup rounds locally or externally


---

<script setup>
import { VPTeamMembers } from 'vitepress/theme'

const members = [
{
avatar: 'https://www.github.com/5stackgg.png',
name: 'LukePOLO',
sponsor: 'https://github.com/sponsors/lukepolo',
links: [
{ icon: 'github', link: 'https://github.com/lukepolo' },
]
}
]
</script>

<div style="text-align: center; margin-top: 2rem;">
<div>
The development of 5Stack is being built by a Solo developer, for fun!
</div>

<VPTeamMembers :members="members" />
</div>
2 changes: 1 addition & 1 deletion nginx.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ You can update the ports in the `targetPort` section as shown below:
port: 443
protocol: TCP
targetPort: https
```
```
39 changes: 39 additions & 0 deletions team.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
layout: page
---

<script setup>
import {
VPTeamPage,
VPTeamPageTitle,
VPTeamMembers
} from 'vitepress/theme'

const members = [
{
avatar: 'https://www.github.com/yyx990803.png',
name: 'Evan You',
title: 'Creator',
links: [
{ icon: 'github', link: 'https://github.com/yyx990803' },
{ icon: 'twitter', link: 'https://twitter.com/youyuxi' }
]
},
...
]
</script>

<VPTeamPage>
<VPTeamPageTitle>
<template #title>
Our Team
</template>
<template #lead>
The development of VitePress is guided by an international
team, some of whom have chosen to be featured below.
</template>
</VPTeamPageTitle>
<VPTeamMembers
:members="members"
/>
</VPTeamPage>

0 comments on commit 7695cfa

Please sign in to comment.