This commit is contained in:
not-nullptr 2024-03-07 11:35:43 +00:00
parent cdda72288f
commit 25884e797e
19 changed files with 1264 additions and 125 deletions

View file

@ -31,6 +31,7 @@ h6 {
body {
background-color: black;
height: fit-content;
overflow-x: hidden;
}
::-webkit-scrollbar {

View file

@ -1,4 +1,5 @@
{
"landingHeader": "suyu",
"landingOne": "Suyu is an open-source, Switch compatible emulator with almost full coverage of the game library."
"landingOne": "Suyu is an open-source, Switch compatible emulator with almost full coverage of the game library.",
"landingCardHeader": "We care about preservation"
}

View file

@ -0,0 +1,6 @@
export interface ICard {
title: string;
compatibility: "goated" | "based" | "cringe";
image: string;
releaseYear: number;
}