Skip to content

nicosalm/salm.dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2996406 · Mar 19, 2025

History

21 Commits
Feb 6, 2025
Mar 6, 2025
Mar 19, 2025
Mar 11, 2025
Feb 2, 2025
Feb 2, 2025
Feb 2, 2025
Feb 2, 2025
Mar 6, 2025
Feb 15, 2025
Feb 15, 2025
Feb 2, 2025
Jan 27, 2025

Repository files navigation

salm.dev

Personal website and blog built with Astro.

Acknowledgements

Stack

Development

# Install dependencies
npm install

# Start development server
npx astro dev

# Build for production
npx astro build

# Preview production build
npx astro preview

Project Structure

src/
├── components/         # Reusable components
│   ├── Chart.astro     # Interactive chart component
│   ├── Mermaid.astro   # Diagram component
│   └── ...
├── content/            # Content collections
│   ├── blog/           # Blog posts in MDX
│   └── books/          # Reading list entries
├── layouts/            # Page layouts
│   ├── BlogPost.astro  # Blog post template
│   └── Layout.astro    # Base site layout
├── pages/              # Route pages
│   ├── blog/           # Blog pages
│   ├── books.astro     # Reading list
│   └── ...
└── styles/            # Global styles

Content Collections

Blog Posts

---
title: "Post Title"
date: "2024-02-01"
description: "Post description"
---

Books

---
title: "Book Title"
author: "Author Name"
dateRead: "2024-02-01"
rating: 5
tags: ["Category One", "Category Two"]
review: "Book review text"
links:
  personalSite: "https://example.com"
---

License

MIT