chore: reorganize project into monorepo
This commit is contained in:
37
backend/content/posts/building-blog-with-astro.md
Normal file
37
backend/content/posts/building-blog-with-astro.md
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
title: Building a Blog with Astro
|
||||
slug: building-blog-with-astro
|
||||
description: Learn why Astro is the perfect choice for building fast, content-focused blogs.
|
||||
category: tech
|
||||
post_type: article
|
||||
pinned: false
|
||||
published: true
|
||||
tags:
|
||||
- astro
|
||||
- web-dev
|
||||
- static-site
|
||||
---
|
||||
|
||||
# Building a Blog with Astro
|
||||
|
||||
Astro is a modern static site generator that delivers lightning-fast performance.
|
||||
|
||||
## Why Astro?
|
||||
|
||||
- Zero JavaScript by default
|
||||
- Island Architecture
|
||||
- Framework Agnostic
|
||||
- Great DX
|
||||
|
||||
## Getting Started
|
||||
|
||||
```bash
|
||||
npm create astro@latest
|
||||
cd my-astro-project
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
## Conclusion
|
||||
|
||||
Astro is perfect for content-focused websites like blogs.
|
||||
Reference in New Issue
Block a user