Compare commits
7 commits
0.2.0-pre.
...
main
Author | SHA1 | Date | |
---|---|---|---|
ac85131e69 | |||
2c42f18e81 | |||
d56f70c1ba |
|||
36e0a056fa |
|||
31c3f76a9b |
|||
693f0f2eae |
|||
f5bb4bf78e |
9 changed files with 4166 additions and 1457 deletions
package-lock.jsonpackage.jsonunlighthouse.config.ts
public
src
assets/favourites
components/cards
data/datafiles
pages
5578
package-lock.json
generated
5578
package-lock.json
generated
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
@ -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
6
public/ai.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Spawning AI
|
||||
# Prevent datasets from using the following file types
|
||||
|
||||
User-Agent: *
|
||||
Disallow: /
|
||||
Disallow: *
|
BIN
src/assets/favourites/summerscathach.png
Normal file
BIN
src/assets/favourites/summerscathach.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 238 KiB |
|
@ -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;
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
]
|
|
@ -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
|
||||
|
|
|
@ -18,6 +18,7 @@ const description =
|
|||
>
|
||||
<Hi />
|
||||
<BaseSection title="About me">
|
||||
<Placeholder height="0px"/>
|
||||
<AboutText/>
|
||||
</BaseSection>
|
||||
<BaseSection title="Favourites">
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue