From cb3b593b683d887b92e6d1275e04209a64a7b273 Mon Sep 17 00:00:00 2001
From: Kyle Belanger <Kyleb44@hotmail.com>
Date: Fri, 28 Feb 2025 11:45:53 -0500
Subject: [PATCH] add sample posts and projects

---
 server/content/posts/hello-world.md   | 22 ++++++++++++++++++++++
 server/content/projects/projects.json | 22 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)
 create mode 100644 server/content/posts/hello-world.md
 create mode 100644 server/content/projects/projects.json

diff --git a/server/content/posts/hello-world.md b/server/content/posts/hello-world.md
new file mode 100644
index 0000000..d5eaceb
--- /dev/null
+++ b/server/content/posts/hello-world.md
@@ -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.
\ No newline at end of file
diff --git a/server/content/projects/projects.json b/server/content/projects/projects.json
new file mode 100644
index 0000000..127d25e
--- /dev/null
+++ b/server/content/projects/projects.json
@@ -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
+  }
+]
\ No newline at end of file