Skip to content

bryanleonardthompson/website

Repository files navigation

bryanleonardthompson.com

Source code for my personal website, built with Astro and deployed on Vercel.

Project Structure

├── public/               # Static assets (images, fonts, favicon)
│   └── fonts/           # Web fonts
├── src/
│   ├── assets/          # Icons and images used in components
│   ├── components/      # Reusable UI components
│   ├── content/         # Content collections
│   │   └── blog/        # Blog posts in Markdown format (organised by year)
│   ├── layouts/         # Page layouts and templates
│   ├── pages/           # Routes and pages
│   ├── styles/          # Global styles and CSS
│   └── utils/           # Utility functions
├── astro.config.mjs     # Astro configuration
├── vercel.json          # Vercel deployment configuration
└── package.json         # Project dependencies and scripts

Commands

Command Action
npm install Installs dependencies
npm run build Build the production site to ./dist/
npm run preview Preview the build locally before deploying

Writing a Post

Add a .md file to src/content/blog/YEAR/ with the following frontmatter:

---
title: "Post title"
description: "Short description"
pubDatetime: 2026-04-19T12:00:00+01:00
tags: ["tag1", "tag2"]
---

Content here.

Deployment

Connected to Vercel — any push to main triggers an automatic build and deploy.

License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors