add sample posts and projects
This commit is contained in:
parent
d03c86ef42
commit
cb3b593b68
2 changed files with 44 additions and 0 deletions
22
server/content/posts/hello-world.md
Normal file
22
server/content/posts/hello-world.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
title: Hello World
|
||||||
|
description: My first blog post
|
||||||
|
date: 2025-02-27
|
||||||
|
tags: [introduction, blog]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
# Hello World!
|
||||||
|
|
||||||
|
This is my first blog post. I'm excited to share my thoughts and projects with you.
|
||||||
|
|
||||||
|
## What to expect
|
||||||
|
|
||||||
|
In this blog, I'll be writing about:
|
||||||
|
|
||||||
|
- Web development
|
||||||
|
- Projects I'm working on
|
||||||
|
- Technical tutorials
|
||||||
|
- And much more!
|
||||||
|
|
||||||
|
Stay tuned for more content coming soon.
|
22
server/content/projects/projects.json
Normal file
22
server/content/projects/projects.json
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"title": "Personal Website",
|
||||||
|
"description": "A personal website and blog built with Node.js, React, and Vite",
|
||||||
|
"technologies": ["React", "Node.js", "Express", "Vite"],
|
||||||
|
"githubUrl": "https://github.com/yourusername/personal-website",
|
||||||
|
"liveUrl": "https://your-website.com",
|
||||||
|
"image": "personal-website.jpg",
|
||||||
|
"featured": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"title": "Sample Project",
|
||||||
|
"description": "A sample project to showcase my skills",
|
||||||
|
"technologies": ["JavaScript", "HTML", "CSS"],
|
||||||
|
"githubUrl": "https://github.com/yourusername/sample-project",
|
||||||
|
"liveUrl": null,
|
||||||
|
"image": "sample-project.jpg",
|
||||||
|
"featured": false
|
||||||
|
}
|
||||||
|
]
|
Loading…
Reference in a new issue