This is a Portfolio Website created using Astro.js with plain old good SCSS/CSS
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src/
│ ├── components/
│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
└── 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.
There's nothing special about src/components/
, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the public/
directory.
To build/run this project locally, nvm, npm and Node v18+ are required.
- If not already installed, install nvm on your machine from here. You can check whether nvm is installed in your terminal with
nvm -v
. - If it is not already the standard-version - install Node v18 with
nvm install 18
. You can check whether the right Node version is selected withnode -v
. If a different Node version is selected, usenvm use 18
. - Navigate to the project folder in your terminal and install project dependencies with
npm install
.
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add , astro check |
npm run astro -- --help |
Get help using the Astro CLI |
This project is currently hosted on Netlify, which is ideal to use Netlify Serverless Functions to send E-Mails via Sendgrid.