Skip to content

Commit

Permalink
docs: adjust navigation, split out team page
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Mar 9, 2024
1 parent 65fbeb1 commit fb6ad03
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 48 deletions.
31 changes: 27 additions & 4 deletions web/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,35 @@ export default defineConfig({

// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'About', link: '/about.md' },
{
text: 'About',
link: '/about.md',
},
{ text: 'Contribute', link: '/contrib-guide/' },
{
text: 'Roadmap',
link: 'https://github.com/rolldown-rs/rolldown/discussions/153',
text: 'Resources',
items: [
{
text: 'Team',
link: '/team.md',
},
{
text: 'Roadmap',
link: 'https://github.com/rolldown-rs/rolldown/discussions/153',
},
{
items: [
{
text: 'Twitter',
link: 'https://twitter.com/rolldown_rs',
},
{
text: 'Discord Chat',
link: 'https://discord.gg/vsZxvsfgC5',
},
],
},
],
},
],

Expand Down
44 changes: 0 additions & 44 deletions web/docs/about.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,3 @@
<script setup>
import { VPTeamMembers } from 'vitepress/theme'

const members = [
{
avatar: 'https://www.github.com/yyx990803.png',
name: 'Evan You',
links: [
{ icon: 'github', link: 'https://github.com/yyx990803' },
{ icon: 'twitter', link: 'https://twitter.com/youyuxi' }
]
},
{
avatar: 'https://www.github.com/Brooooooklyn.png',
name: 'Yinan Long (Brooooooklyn)',
links: [
{ icon: 'github', link: 'https://github.com/Brooooooklyn' },
{ icon: 'twitter', link: 'https://twitter.com/Brooooook_lyn' }
]
},
{
avatar: 'https://www.github.com/hyf0.png',
name: 'Yunfei He',
links: [
{ icon: 'github', link: 'https://github.com/hyf0' },
{ icon: 'twitter', link: 'https://twitter.com/_hyf0' }
]
},
{
avatar: 'https://www.github.com/underfin.png',
name: 'Kui Li (underfin)',
links: [
{ icon: 'github', link: 'https://github.com/underfin' }
]
}
]
</script>

# About Rolldown

## TL;DR
Expand Down Expand Up @@ -99,9 +61,3 @@ Rolldown is still in early stage. We have a lot of ground to cover, and we won't
- [GitHub](https://github.com/rolldown-rs/rolldown)
- [Contribution Guide](/contrib-guide/)
- [Discord Chat](https://discord.gg/vsZxvsfgC5)

### The Team

The Rolldown project was originally created by [Yinan Long](https://github.com/Brooooooklyn) (aka Brooooooklyn, author of [NAPI-RS](https://napi.rs/)), and is now led by [Evan You](https://github.com/yyx990803) (creator of [Vite](https://vitejs.dev/)).

<VPTeamMembers size="small" :members="members" />
53 changes: 53 additions & 0 deletions web/docs/team.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<script setup>
import { VPTeamMembers } from 'vitepress/theme'

const members = [
{
avatar: 'https://www.github.com/yyx990803.png',
name: 'Evan You',
links: [
{ icon: 'github', link: 'https://github.com/yyx990803' },
{ icon: 'twitter', link: 'https://twitter.com/youyuxi' }
]
},
{
avatar: 'https://www.github.com/Brooooooklyn.png',
name: 'Yinan Long (Brooooooklyn)',
links: [
{ icon: 'github', link: 'https://github.com/Brooooooklyn' },
{ icon: 'twitter', link: 'https://twitter.com/Brooooook_lyn' }
]
},
{
avatar: 'https://www.github.com/hyf0.png',
name: 'Yunfei He',
links: [
{ icon: 'github', link: 'https://github.com/hyf0' },
{ icon: 'twitter', link: 'https://twitter.com/_hyf0' }
]
},
{
avatar: 'https://www.github.com/underfin.png',
name: 'Kui Li (underfin)',
links: [
{ icon: 'github', link: 'https://github.com/underfin' }
]
}
]
</script>

# Team

The Rolldown project was originally created by [Yinan Long](https://github.com/Brooooooklyn) (aka Brooooooklyn, author of [NAPI-RS](https://napi.rs/)), and is now led by [Evan You](https://github.com/yyx990803) (creator of [Vite](https://vitejs.dev/)).

<VPTeamMembers size="small" :members="members" />

## Join Us!

Rolldown is still in early stage. We have a lot of ground to cover, and we won't be able to do this without the help from community contributors. We are also actively looking for more team members with long term commitment in improving JavaScript tooling with Rust.

### Useful Links

- [GitHub](https://github.com/rolldown-rs/rolldown)
- [Contribution Guide](/contrib-guide/)
- [Discord Chat](https://discord.gg/vsZxvsfgC5)

0 comments on commit fb6ad03

Please sign in to comment.