Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
2023-03-16 23:29:16 +01:00
.vscode New Files 2023-01-15 17:53:19 +01:00
src small design change 2023-03-16 23:29:16 +01:00
static small design change 2023-03-16 23:29:16 +01:00
.gitignore Moving static files, adding robots, adding sitemap 2023-03-14 21:54:19 +01:00
.gitlab-ci.yml unlisted directories, deleting data folder after build 2023-03-16 22:38:58 +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 Moving static files, adding robots, adding sitemap 2023-03-14 21:54:19 +01:00
package-lock.json Moving static files, adding robots, adding sitemap 2023-03-14 21:54:19 +01:00
package.json Moving static files, adding robots, adding sitemap 2023-03-14 21:54:19 +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 unlisted directories, deleting data folder after build 2023-03-16 22:38:58 +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