Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
Firq f5bb4bf78e
All checks were successful
/ checking (push) Successful in 14s
/ build-site (push) Successful in 1m41s
/ release (push) Successful in 7s
Merge pull request 'Mergin dev - new header, updated servants' (#29) from dev into main
Reviewed-on: #29
2024-06-15 17:20:51 +00:00
.forgejo/workflows Added success checks 2024-01-10 11:45:42 +01:00
.vscode Added version to About Page 2023-12-31 16:50:29 +01:00
src Updated Servant list 2024-06-15 19:17:29 +02:00
static Updated Servant list 2024-06-15 19:17:29 +02:00
.gitignore .gitignore changes 2023-03-17 23:06:43 +01:00
.gitlab-ci.yml Fixing Quotes 2023-08-04 22:14:50 +02:00
.prettierignore Prettier settings 2023-03-09 11:44:58 +01:00
.prettierrc Prettier settings 2023-03-09 11:44:58 +01:00
astro.config.mjs Added version to About Page 2023-12-31 16:50:29 +01:00
Dockerfile Updated serve + unlighthouse docker ref 2023-12-29 13:27:44 +01:00
package-lock.json Updated Servant list 2024-06-15 19:17:29 +02:00
package.json Updated Servant list 2024-06-15 19:17:29 +02:00
postcss.config.cjs Postcss (vendor prefixes), etc. 2023-12-30 00:06:32 +01:00
README.md Updated README, hopefully fixed mobile design, refactored and refined desktop design 2023-01-26 23:29:36 +01:00
serve.json Updated caching for css 2023-12-29 15:21:17 +01:00
tsconfig.json New Files 2023-01-15 17:53:19 +01:00
unlighthouse.config.ts Updated Unlighthouse capturing 2023-12-29 14:39:08 +01:00

Welcome to Firqs FGO Site

This is build using Astro

🚀 Project Structure

/
├── static/
│   ├── favicon.svg
│   └── other files ...
│
├── src/
│   ├── components/
│   │   ├── servantCard.astro
│   │   ├── ceCard.astro
│   │   ├── contactCard.astro
│   │   └── taCard.astro
│   │
│   ├── layouts/
│   │   ├── customFooter.astro
│   │   ├── baseSection.astro
│   │   ├── taSection.astro
│   │   ├── contactSection.astro
│   │   └── Layout.astro
│   │
│   └── pages/
│       └── index.astro
│
├── .gitlab-ci.yml
├── astro.config.mjs
└── 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.

More routes will follow soon

Any static assets, like images, can be placed in the static/ directory.

🧞 Astro-Specific 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:3000
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 preview
npm run astro --help Get help using the Astro CLI