Getting Started
Everything you need to launch your blog with Hermes Prime.
Install
npm create astro@latest my-blog -- --template hermes-prime
cd my-blog
npm install Run
npm run dev Open http://localhost:4321 to see your site.
Configure
Edit src/lib/site.ts to set your site name, description, URL, and social links.
Write Your First Post
Create a file in src/content/blog/ with frontmatter:
---
title: My First Post
description: A short description
pubDate: 2025-02-22
tags: [hello]
---
Your content here. Deploy
npm run build Deploy the dist/ folder to Vercel, Netlify, Cloudflare Pages, or any static host.
Learn More
- Getting Started with Hermes Prime — Full setup guide
- Customizing the Theme — Colors, fonts, and layout
- Deployment Options — Vercel, Netlify, and more
- All blog posts