generated from nhcarrigan/template
feat: add games
This commit is contained in:
21
src/config/Games.ts
Normal file
21
src/config/Games.ts
Normal 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"
|
||||
}
|
||||
]
|
@ -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));
|
||||
|
Reference in New Issue
Block a user