Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
Firq 709f459963
All checks were successful
/ checking (push) Successful in 13s
/ build-site (push) Successful in 2m48s
/ release (push) Successful in 10s
Merge pull request 'Updated servants and TA data' (#12) from dev into main
Reviewed-on: #12
2023-12-23 23:56:10 +00:00
.forgejo/workflows fixed issue in release yml 2023-12-21 12:28:47 +01:00
.vscode New Files 2023-01-15 17:53:19 +01:00
src Updated servants and ta data 2023-12-24 00:42:32 +01:00
static Updated servants and ta data 2023-12-24 00:42:32 +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 to new custom docker image 2023-12-21 15:47:23 +01:00
package-lock.json small visual fixes + upgrade to astro v4 2023-12-20 23:48:28 +01:00
package.json Updated servants and ta data 2023-12-24 00:42: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 testing new caching settings 2023-07-29 13:55:48 +02:00
tsconfig.json New Files 2023-01-15 17:53:19 +01:00
unlighthouse.config.ts testing with http 2023-12-21 01:19:15 +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