Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
Firq df9337c684
All checks were successful
/ checking (push) Successful in 19s
/ publish (push) Successful in 8s
/ build-site (push) Successful in 2m7s
/ deploy-unlighthouse-files (push) Successful in 9s
/ deploy-unlighthouse-site (push) Successful in 7s
/ unlighthouse (push) Successful in 53s
Bumped version
2023-12-29 15:05:38 +01:00
.forgejo/workflows Updated serve + unlighthouse docker ref 2023-12-29 13:27:44 +01:00
.vscode New Files 2023-01-15 17:53:19 +01:00
src Moved to iconoir package instead of web stylesheet 2023-12-29 15:05:13 +01:00
static Updated files to png in higher resolution, astro should optimize by itself 2023-12-25 23:49:11 +01: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 fixed output dir 2023-12-21 00:22:04 +01:00
Dockerfile Updated serve + unlighthouse docker ref 2023-12-29 13:27:44 +01:00
package-lock.json Moved to iconoir package instead of web stylesheet 2023-12-29 15:05:13 +01:00
package.json Bumped version 2023-12-29 15:05:38 +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 policy to 1 year 2023-12-26 01:08:04 +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