Created
October 30, 2022 20:41
-
-
Save SaraVieira/f5bedb5a34aeb53daa36ad31d89284f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const consolesMenu = [ | |
{ | |
name: 'NES', | |
linkRandom: '/nes/random', | |
id: "nes", | |
linkAll: '/nes/all', | |
}, | |
{ | |
name: 'Super Nintendo', | |
linkRandom: '/snes/random', | |
id: "snes", | |
linkAll: '/snes/all', | |
}, | |
{ | |
name: 'Nintendo 64', | |
linkRandom: '/n64/random', | |
id: "n64", | |
linkAll: '/n64/all', | |
}, | |
{ | |
name: 'Game Boy', | |
linkRandom: '/gb/random', | |
id: "gb", | |
linkAll: '/gb/all', | |
}, | |
{ | |
name: 'Game Boy Color', | |
linkRandom: '/gbc/random', | |
id: "gbc", | |
linkAll: '/gbc/all', | |
}, | |
{ | |
name: 'Game Boy Advance', | |
linkRandom: '/gba/random', | |
id: "gba", | |
linkAll: '/gba/all', | |
}, | |
{ | |
name: 'Sega Genesis/Megadrive', | |
linkRandom: '/md/random', | |
id: "md", | |
linkAll: '/md/all', | |
}, | |
{ | |
name: 'Sega Master System', | |
linkRandom: '/ms/random', | |
id: "ms", | |
linkAll: '/ms/all', | |
}, | |
{ | |
name: 'Game Gear', | |
id: "gg", | |
linkRandom: '/gg/random', | |
linkAll: '/gg/all', | |
}, | |
{ | |
name: 'TurboGrafx-16', | |
id: "pce", | |
linkRandom: '/pce/random', | |
linkAll: '/pce/all', | |
}, | |
{ | |
name: 'Playstation 1', | |
id: "ps1", | |
linkRandom: '/ps1/random', | |
linkAll: '/ps1/all', | |
}, | |
{ | |
name: '32X', | |
id: "sega32", | |
linkRandom: '/sega32/random', | |
linkAll: '/sega32/all', | |
}, | |
{ | |
name: 'Virtual Boy', | |
id: "vb", | |
linkRandom: '/vb/random', | |
linkAll: '/vb/all', | |
}, | |
{ | |
name: 'Sega Saturn', | |
id: "sat", | |
linkRandom: '/sat/random', | |
linkAll: '/sat/all', | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment