Skip to content

the-guild-org/website

This branch is 2 commits ahead of, 312 commits behind master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Dec 3, 2023
02f6925 · Dec 3, 2023
Oct 9, 2023
Oct 24, 2023
Jan 24, 2023
Nov 28, 2023
Dec 3, 2023
Feb 6, 2023
Jun 29, 2023
Oct 1, 2022
Oct 24, 2023
Aug 28, 2022
Jun 29, 2023
Dec 3, 2023
Oct 24, 2023
Nov 28, 2023
Nov 18, 2022
Jan 24, 2023
May 27, 2023

Repository files navigation

This project contains the main source code for the-guild.dev website and it's sub-components.

Installing Dependencies

Run pnpm i from the root directory to get all the dependencies installed.

Running the Website (Development Mode)

Run cd website && pnpm dev to start the server locally.

Build and Run the Website (Production)

Run pnpm build followed by pnpm export to build and export a static version of the website in production mode.

Contributing to Our Blog

We use MDX (Markdown with JSX) for our blog posts. To add a new blog post:

  • Create a new MDX file in website/pages/blog directory with the same template as other blog posts
  • Update the meta object with all the information regarding the blog post including title, thumbnails, author name, etc.
  • Any assets related to the blog can be placed in website/public/blog-assets directory within its own folder
  • If you are contributing for the first time, make sure that you add your details in ui/authors.ts file with a new entry to the authors object
  • Once you send us a PR, we will review the same, provide the feedback as necessary and merge it if everything looks good