This is my personal blog, a space I've created to share and document what I'm learning. The main goal is to write about topics I'm studying or curious about, with a focus on learning and exploration.
- Portuguese
- English (not available for now)
To get the project up and running on your local machine, follow these steps:
Clone the repository: First, clone the project to your local machine using Git.
Install dependencies: Navigate to the project's folder in your terminal and run the following command to install all the necessary dependencies:
npm install
Run the project: Finally, start the project in development mode with this command:
npm run dev
To create a new post, navigate to the posts folder within the project. Inside, create a new .md file. While it's not mandatory, it's a good practice to name the file after the post's title for better organization.
At the beginning of the file, you must include and fill in the following information:
---
title: 'How to use GIT'
slug: 'how-to-use-git'
date: '2025-09-09'
author: 'Gabriel Silveira'
category: 'GIT'
---
After adding this information, you can freely write the content of your post. Feel free to use the existing posts as examples.



