Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
Firq ce6c660a76
All checks were successful
/ checking (push) Successful in 4m7s
/ build-site (push) Successful in 2m43s
/ publish (push) Successful in 1m26s
/ unlighthouse (push) Successful in 1m14s
/ deploy-unlighthouse-files (push) Successful in 14s
/ deploy-unlighthouse-site (push) Successful in 7s
Updated docker to ci-docker-images (migration)
2023-12-28 16:27:56 +01:00
.forgejo/workflows Updated docker to ci-docker-images (migration) 2023-12-28 16:27:56 +01:00
.vscode
src Updated docker to ci-docker-images (migration) 2023-12-28 16:27:56 +01:00
static
.gitignore
.gitlab-ci.yml
.prettierignore
.prettierrc
astro.config.mjs
Dockerfile Updated docker to ci-docker-images (migration) 2023-12-28 16:27:56 +01:00
package-lock.json Package lock + Optimizing Instakill embed 2023-12-26 00:53:58 +01:00
package.json Updated docker to ci-docker-images (migration) 2023-12-28 16:27:56 +01:00
README.md
serve.json Updated caching policy to 1 year 2023-12-26 01:08:04 +01:00
tsconfig.json
unlighthouse.config.ts

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