Go to file
Cyril Šebek 3b33ffa05d
Finished section for music
- Finished listing of musical compositions
- Slight update to listing of blog posts
- Updating api.js
- Fixed dark/light mode in some pages (font color)
2024-06-17 11:58:32 +02:00
.vscode Default Astro.js template 2024-03-19 12:59:26 +01:00
public Finished section for music 2024-06-17 11:58:32 +02:00
src Finished section for music 2024-06-17 11:58:32 +02:00
.gitignore Default Astro.js template 2024-03-19 12:59:26 +01:00
astro.config.mjs Fixed contact form on main page 2024-06-13 13:06:41 +02:00
components.json done language switching 2024-04-07 11:11:04 +02:00
image.png Finished section for music 2024-06-17 11:58:32 +02:00
package.json Merge branch 'main' of git.cyrilsebek.cz:blboun3/personal-website 2024-06-13 13:08:33 +02:00
pnpm-lock.yaml Merge branch 'main' of git.cyrilsebek.cz:blboun3/personal-website 2024-06-13 13:08:33 +02:00
README.md Finished section for music 2024-06-17 11:58:32 +02:00
tailwind.config.mjs Dali šme tam barvišky 2024-05-30 16:23:22 +02:00
tsconfig.json done language switching 2024-04-07 11:11:04 +02:00

Personal themeable i18n compatible website in astro

Code for my personal website written in astro with react.js elements. i18n compatible (even blog), easily CSS stylable (one .css file for everything)

🚀 Project Structure

The file & folder structure is as follows:

/
├── 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.

🧞 Commands

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