Compare commits

..

7 commits

Author SHA1 Message Date
ac85131e69 Update package.json 2025-08-01 10:04:39 +00:00
2c42f18e81 Update unlighthouse.config.ts 2025-08-01 10:01:31 +00:00
d56f70c1ba
Bumped ver 2025-08-01 07:51:39 +02:00
36e0a056fa
Merge branch 'dev' 2025-08-01 07:50:48 +02:00
31c3f76a9b
Release Candidate 2025-08-01 07:47:08 +02:00
693f0f2eae
added ai.txt 2025-04-27 18:29:08 +02:00
f5bb4bf78e Merge pull request 'Mergin dev - new header, updated servants' () from dev into main
Reviewed-on: 
2024-06-15 17:20:51 +00:00
9 changed files with 4166 additions and 1457 deletions

5578
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{
"name": "@firq/fgosite",
"type": "module",
"version": "0.2.0-pre.112",
"version": "0.2.1-pre.1",
"private": true,
"scripts": {
"dev": "astro dev",
@ -13,10 +13,10 @@
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.5.6",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.2.3",
"@astrojs/sitemap": "^3.3.0",
"@astrojs/mdx": "^4.3.2",
"@astrojs/sitemap": "^3.4.2",
"@fontsource-variable/work-sans": "^5.2.5",
"astro": "^5.6.1",
"astro": "^5.12.7",
"astro-critical-css": "^0.0.7",
"astro-meta-tags": "^0.3.1",
"autoprefixer": "^10.4.21",
@ -25,7 +25,7 @@
"typescript": "^5.8.3"
},
"devDependencies": {
"unlighthouse": "^0.16.3"
"unlighthouse": "^0.17.2"
},
"browserslist": [
"last 2 versions",

6
public/ai.txt Normal file
View file

@ -0,0 +1,6 @@
# Spawning AI
# Prevent datasets from using the following file types
User-Agent: *
Disallow: /
Disallow: *

Binary file not shown.

After

(image error) Size: 238 KiB

View file

@ -34,12 +34,12 @@ const loadedImage = plsLoadImage(images, imagePath)
<style>
.heading {
display: flex;
height: fit-content;
height: 3.5rem;
min-height: 2.5rem;
line-height: 1.75rem;
font-size: 24px;
color: var(--c-primary-text);
max-width: 200px;
max-width: 150px;
padding-bottom: 0.3rem;
font-weight: 500;
margin: 0px;

View file

@ -15,6 +15,12 @@
"name": "Summer Skadi",
"origin": "Fate/Grand Order",
"imageFile": "summerskadi.png",
"link": "https://twitter.com/firq_ow/status/1816355501216596073"
"link": "https://youtu.be/qmR4s3DHZXw"
},
{
"name": "Summer Scathach",
"origin": "Fate/Grand Order",
"imageFile": "summerscathach.png",
"link": "https://youtu.be/k0E3kgx3eMA"
}
]

View file

@ -28,7 +28,7 @@ const projects = [
const data = structuredClone(favouritesdata);
data.map((item) => { item.origin = "First 120 on NA" })
data.map((item) => { if (item.name !== "Summer Scathach") {item.origin = "First 120 on NA"} else {item.origin = "After Forever"} })
---
<Layout

View file

@ -18,6 +18,7 @@ const description =
>
<Hi />
<BaseSection title="About me">
<Placeholder height="0px"/>
<AboutText/>
</BaseSection>
<BaseSection title="Favourites">

View file

@ -1,4 +1,4 @@
import type { UserConfig } from 'unlighthouse'
import type { UserConfig } from '@unlighthouse/core'
export default async (): Promise<UserConfig> => {
/* fetch sitemap from debug container */
@ -14,12 +14,12 @@ export default async (): Promise<UserConfig> => {
lighthouseOptions: {
throttlingMethod: 'simulate',
throttling: {
rttMs: 40,
throughputKbps: 5000,
requestLatencyMs: 100,
downloadThroughputKbps: 5000,
uploadThroughputKbps: 3000,
cpuSlowdownMultiplier: 2,
rttMs: 150,
throughputKbps: 1638.4,
requestLatencyMs: 562.5,
downloadThroughputKbps: 1474.56,
uploadThroughputKbps: 675,
cpuSlowdownMultiplier: 4,
},
screenEmulation: {
mobile: true,