0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00
astro/www/src/config.ts
Nate Moore 8af8b86f0b
WIP: Launch Post (#333)
* feat: add blog to `www`

* feat: add BlogHeader

* wip: add heroImage support

* feat: update hero image styling

* finalize blog post

* use site index instead of blog index

* fix: don't use float

* chore: copy cleanup

* fix: scroll issue on landing page

Co-authored-by: Fred K. Schott <fkschott@gmail.com>
2021-06-08 14:01:46 -05:00

9 lines
169 B
TypeScript

export const sidebar = [
{
text: 'Introduction',
children: [
{ text: 'Welcome', link: '/' },
{ text: 'Example', link: '/example' },
],
},
];