Update credits and download info
This commit is contained in:
@@ -15,11 +15,13 @@ import cheezitImage from "$assets/images/credits/cheezit.png";
|
||||
import credit9021007Image from "$assets/images/credits/9021007.gif";
|
||||
import starcenturionImage from "$assets/images/credits/starcenturion.gif";
|
||||
import gabethefirstImage from "$assets/images/credits/gabethefirst.png";
|
||||
import toastamiboImage from "$assets/images/credits/toastamibo.png";
|
||||
import happyvrImage from "$assets/images/credits/happyvr.png";
|
||||
import magolorImage from "$assets/images/credits/magolor.png";
|
||||
import tagcomputingImage from "$assets/images/credits/tagcomputing.png";
|
||||
import miaImage from "$assets/images/credits/mia.png";
|
||||
import andryImage from "$assets/images/credits/andry.png";
|
||||
import zombiebImage from "$assets/images/credits/zombieb.png";
|
||||
|
||||
const credits = [
|
||||
{
|
||||
@@ -95,7 +97,12 @@ const credits = [
|
||||
image: gabethefirstImage,
|
||||
},
|
||||
{
|
||||
name: "HappyVR",
|
||||
name: "toast amibo",
|
||||
role: "Artist",
|
||||
image: toastamiboImage,
|
||||
},
|
||||
{
|
||||
name: "HappyVr",
|
||||
role: "Leaf Shader",
|
||||
image: happyvrImage,
|
||||
},
|
||||
@@ -114,11 +121,16 @@ const credits = [
|
||||
role: "Test Squad",
|
||||
image: miaImage,
|
||||
},
|
||||
{
|
||||
{
|
||||
name: "andry6702",
|
||||
role: 'Coined the term "First EA"',
|
||||
image: andryImage,
|
||||
},
|
||||
{
|
||||
name: "ZombieB",
|
||||
role: 'ZombieB',
|
||||
image: zombiebImage,
|
||||
},
|
||||
];
|
||||
---
|
||||
|
||||
@@ -131,25 +143,23 @@ const credits = [
|
||||
credits.map((credit) => (
|
||||
<div class="span4">
|
||||
<div class="credit-entry">
|
||||
{
|
||||
credit.animated ? (
|
||||
<img
|
||||
src={credit.image.src}
|
||||
alt={`${credit.name} pfp`}
|
||||
class="credit-avatar"
|
||||
loading="lazy"
|
||||
width="72"
|
||||
height="72"
|
||||
/>
|
||||
) : (
|
||||
<Image
|
||||
src={credit.image}
|
||||
alt={`${credit.name} pfp`}
|
||||
class="credit-avatar"
|
||||
loading="lazy"
|
||||
/>
|
||||
)
|
||||
}
|
||||
{credit.animated ? (
|
||||
<img
|
||||
src={credit.image.src}
|
||||
alt={`${credit.name} pfp`}
|
||||
class="credit-avatar"
|
||||
loading="lazy"
|
||||
width="72"
|
||||
height="72"
|
||||
/>
|
||||
) : (
|
||||
<Image
|
||||
src={credit.image}
|
||||
alt={`${credit.name} pfp`}
|
||||
class="credit-avatar"
|
||||
loading="lazy"
|
||||
/>
|
||||
)}
|
||||
<div>
|
||||
<h3>{credit.name}</h3>
|
||||
<p>{credit.role}</p>
|
||||
|
||||
@@ -15,7 +15,7 @@ const defaultDownload = downloads[0];
|
||||
data-download-button
|
||||
aria-label={`Download TenWholeYears for ${defaultDownload.label}`}
|
||||
>
|
||||
Download for {defaultDownload.label}
|
||||
Download for {defaultDownload.label} ({defaultDownload.version})
|
||||
</a>
|
||||
) : (
|
||||
<a href="/downloads/" class="btn btn-primary btn-large">
|
||||
|
||||
Reference in New Issue
Block a user