Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 744 Bytes

File metadata and controls

34 lines (23 loc) · 744 Bytes

beparano.id

Source code for my personal website at beparano.id.

Built with Astro and Tailwind CSS, hosted on GitHub Pages. Blog posts are written in Markdown.

Local development

npm install
npm run dev

Adding a blog post

Create a new .md file in src/content/blog/:

---
title: "My post"
description: "A short description."
date: 2026-04-22
tags: [some, tags]
image: "/images/some-folder/some-file.jpeg"
---

Content goes here.

Images go in public/images/ and are referenced as /images/filename.jpg.

Deployment

Pushing to main triggers a GitHub Actions workflow that builds and deploys to GitHub Pages automatically.