This is a portfolio website built using Astro, a static site generator that delivers lightning-fast performance and embraces the JAMstack philosophy. The blog is built using the Astro starter kit
- Home
- About
- Projects
- Contact
If you'd like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your changes.
- Make your enhancements or additions.
- Submit a pull request, describing the changes you've made.
To run the project locally, you'll need Node.js and npm installed on your system. Follow these steps to get started:
- Clone this repository to your local machine.
- Install the project dependencies with
npm install
. - Start the development server with
npm run dev.
- Open your browser and visit http://localhost:3000 to see the project in action.
Inside of your Astro project, you'll find the following directories and files:
/
├── public/
│ └── ...
├── src/
│ ├── components/
│ │ └── ...
│ ├── layouts/
│ │ └── ...
│ └── pages/
│ └── ...
└── package.json
Astro looks for .astro
or .md
files in the src/pages/
directory. Each page is exposed as a route based on its file name.
Any static assets, like images, can be placed in the public/
directory. These files will be copied into the final build.
If you come across any bugs, have suggestions for improvements, or want to request new features, please submit an issue in the GitHub repository. Your feedback is highly appreciated!
This project is licensed under the General Public License v3.0. See the LICENSE file for details.