CMS Dashboard
Manage your blog posts and content.
About This CMS
This is a demo CMS dashboard. Blog posts are stored as Markdown files in src/content/blog/.
To add new posts, create a new .md file with the appropriate frontmatter (title, date, author, category, excerpt).
Blog Posts
+ New Post| Title | Category | Date | Actions |
|---|---|---|---|
| The Sustainability Advantage | Sustainability | Jun 4, 2026 | |
| Bamboo vs. Traditional Wood | Product Comparison | May 20, 2026 | |
| FSC Certification Explained | Certification | Apr 15, 2026 |
Create New Post
How to Add a New Blog Post
- 1. Create a new file in
src/content/blog/with a descriptive name (e.g.,my-post.md) - 2. Add the frontmatter metadata at the top of the file
- 3. Write your post content in Markdown format below the frontmatter
- 4. Rebuild the site and your post will appear automatically
Frontmatter Template
---
title: Your Post Title
date: 2026-06-04
author: Author Name
category: Category Name
excerpt: A brief description of your post (1-2 sentences)
---
## Your post content starts here
Write your blog post using Markdown format... Product Management
Products are currently managed through the website code. To update product information:
- Edit
src/pages/products.astrofor product descriptions - Update product images in the image generation section
- Modify product specifications and details in the product card components
For a more sophisticated product CMS, contact your development team to implement a database-backed solution.