Compare commits

...

2 commits

Author SHA1 Message Date
629bf91d4f
Bumped astro and restructured
All checks were successful
/ get-version (push) Successful in 5s
/ astro-check (push) Successful in 14s
/ build-site (push) Successful in 1m17s
/ check-tag (push) Successful in 3s
/ auto-deploy-dockge (push) Successful in 7s
/ checking (push) Successful in 15s
/ create-release (push) Successful in 11s
2024-08-21 13:26:38 +02:00
949b05b192
smol changes
All checks were successful
/ get-version (push) Successful in 3s
/ astro-check (push) Successful in 12s
2024-08-16 18:44:31 +02:00
9 changed files with 451 additions and 147 deletions

View file

@ -1,12 +1,12 @@
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import metaTags from "astro-meta-tags";
import { defineConfig } from 'astro/config';
export default defineConfig({
sitemap: true,
base: '/',
outDir: 'dist',
publicDir: 'static',
publicDir: 'public',
site: 'https://fgo-ta.com/',
integrations: [sitemap(), metaTags()],
trailingSlash: "never"

560
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"name": "fgo-ta-com-website",
"type": "module",
"version": "0.2.2-pre.18",
"version": "0.2.2-pre.19",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
@ -11,10 +11,10 @@
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.5.2",
"@astrojs/check": "^0.9.1",
"@astrojs/check": "^0.9.3",
"@astrojs/sitemap": "^3.1.6",
"@fontsource/work-sans": "^5.0.18",
"astro": "^4.13.0",
"astro": "^4.14.3",
"astro-meta-tags": "^0.3.0",
"autoprefixer": "^10.4.19",
"iconoir": "^7.7.0",

View file

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 123 KiB

View file

@ -70,14 +70,16 @@ if (baseurl) {
.head {
hyphens: auto;
padding-top: 2rem;
font-size: 2rem;
font-size: 3rem;
font-weight: 800;
font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial,
sans-serif;
}
.sub {
font-size: 0.75rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
font-size: 1rem;
font-weight: 600;
font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial,
sans-serif;
@ -98,19 +100,19 @@ if (baseurl) {
@media (min-width: 620px) {
.head {
hyphens: none;
font-size: 3rem;
}
.sub {
font-size: 0.75rem;
}
}
@media (min-width: 1000px) {
.head {
font-size: 4rem;
}
.sub {
font-size: 1rem;
}
}
@media (min-width: 1000px) {
.head {
font-size: 6rem;
}
.sub {
font-size: 1rem;
}
}
</style>

View file

@ -45,6 +45,8 @@ const display = fadeout ? "": "display: none"
}
.sub {
padding-left: 0.5rem;
padding-right: 0.5rem;
font-size: 1.5rem;
font-weight: 800;
font-family: 'Work Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial,

View file

@ -1,7 +1,7 @@
---
import Navbar from '../components/navbar.astro'
import NavbarEntry from '../components/navbarEntry.astro'
import navdata from '../../static/data/_navdata.json'
import navdata from '../data/_navdata.json'
import embed from '../assets/embed.png'
import home from 'iconoir/icons/home.svg'
import database from 'iconoir/icons/database.svg'