My website as a full stack software developer.
Visit the website at faustom.dev
- Astro as the project framework. (https://astro.build/)
- Bulma CSS as the CSS framework with SASS preprocessing. (https://bulma.io/)
/
├── public/
│ └── favicon.svg
├── src/
│ ├── components/
│ │ └── _all the components_
│ ├── layouts/
│ │ └── _all the layouts
│ ├── pages/
│ │ └── _all the pages_
│ └── styles/
│ ├── global.scss
│ └── _all global styles_
├── astro.config.mjs
├── .gitignore
├── .prettierrc
├── README.md
├── tsconfig.json
└── package.json
- Clone the repository.
- Run
npm install
to install all the dependencies. - Run
npm run dev
to start the development server.