Astro site for all of Firqs servant offerings concering TA as well as additional information https://firq.dev
Find a file
2023-03-05 02:06:50 +01:00
.vscode New Files 2023-01-15 17:53:19 +01:00
src source fix 2023-03-05 02:06:50 +01:00
static Added typescript, added new logo, improved margins 2023-03-05 02:00:36 +01:00
.gitignore removed PNG images 2023-01-27 23:12:10 +01:00
.gitlab-ci.yml Set Expire date for artifacts 2023-01-28 13:42:31 +01:00
astro.config.mjs Hopefully fixes image links 2023-03-04 21:57:55 +01:00
package-lock.json Updated to Astro V2.0 2023-01-27 16:02:31 +01:00
package.json Updated to Astro V2.0 2023-01-27 16:02:31 +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