blogEnabled flag in the appConfig.tsx file.
tsx web/appConfig.tsx
Adding a new blog post
To add a new blog post, create a new entity in theblog_posts table in Supabase.
- The
titlefield is used as the title and headline of the blog post. - The
slugfield is used to generate the URL. - The
languagefield is used to filter the blog posts by language. Add the language code (e.g.enfor English) to the field. - The
descriptionfield is used as the meta description of the blog post and is displayed below the title and in the blog overview. - The
contentfield is used as the content of the blog post. It supports markdown and code highlighting. Edit theweb/components/blog/mdx-content.tsxfile to customize the rendering. - The
cover_imagefield is used as the cover image of the blog post. It is displayed at the top of the blog content and in the blog overview.

