Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
2023-03-11 01:10:19 +01:00
.vscode New Files 2023-01-15 17:53:19 +01:00
src Small device fix 2023-03-11 00:30:10 +01:00
static Updated favourites, preparing for implementing extra stuff 2023-03-10 22:51:39 +01:00
.gitignore social fix, logo fix, removed leftovers 2023-03-10 22:33:09 +01:00
.gitlab-ci.yml nesh changes 2023-03-11 01:10:19 +01:00
.old.gitlab-ci.yml Bye gitlab pages, welcome cd/ci with server 2023-03-06 19:12:59 +01: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 Bye gitlab pages, welcome cd/ci with server 2023-03-06 19:12:59 +01:00
package-lock.json Adding refresh script, optimizing pipeline, small site change 2023-03-07 20:39:13 +01:00
package.json Bye gitlab pages, welcome cd/ci with server 2023-03-06 19:12:59 +01:00
README.md Updated README, hopefully fixed mobile design, refactored and refined desktop design 2023-01-26 23:29:36 +01:00
tsconfig.json New Files 2023-01-15 17:53:19 +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