We use Astro to generate the website.
- If you want to work on blog posts, go to
src/content/blog - If you want to change the other text content of the website, go to
src/pages- Homepage:
index.mdx - Blog index page:
src/pages/blog/index.astro- Individual blog pages:
src/pages/blog/[...slug].astro
- Individual blog pages:
- Homepage:
- Layouts are in
src/layouts publiccontains assets that visitors will get directly- Favicon goes in
public/favicon.ico - Images go in
public/img - Fonts go in
public//fonts
- Favicon goes in
I think you'll need to install Node.js and run npm i in this directory.
Use npm run dev to build and run the website locally.