feat: add games

This commit is contained in:
2024-08-24 20:52:29 -07:00
parent 8feb4700a1
commit 516a022553
4 changed files with 79 additions and 0 deletions

21
src/config/Games.ts Normal file
View File

@ -0,0 +1,21 @@
export const Games: {
name: string;
img: string;
}[] = [
{
name: "Bloody Spell",
img: "bloody-spell.jpg"
},
{
name: "Dynasty Warriors 9: Empires",
img: "dw-9.jpg"
},
{
name: "Soul Calibur VI",
img: "soul-calibur.jpg"
},
{
name: "Star Wars: The Old Republic",
img: "swtor.jpg"
}
]

View File

@ -5,4 +5,5 @@ export const NavItems = [
{ href: "/contact", text: "Contact" },
{ href: "/certs", text: "Certifications" },
{ href: "/reviews", text: "Reviews" },
{ href: "/games", text: "Games"}
].sort((a, b) => a.text.localeCompare(b.text));