Working player, some other fixes

This commit is contained in:
2025-08-11 13:23:47 +09:30
parent a5f00515a5
commit 7773d7c3ea
9 changed files with 3378 additions and 602 deletions

View File

@@ -31,7 +31,9 @@ const hero = getProjectHero(project);
const seoImage: SiteImage = {
externalURL: await getFullExternalURLOfImage(hero),
src: hero.src,
alt: project.data.images.hero.alt
alt: project.data.images.hero.alt,
width: hero.width,
height: hero.height
};
---