| 1 | export type Item = { |
| 2 | name: string; |
| 3 | slug: string; |
| 4 | description?: string; |
| 5 | }; |
| 6 | |
| 7 | export const menus: { items: Item[] }[] = [ |
| 8 | { |
| 9 | items: [ |
| 10 | { |
| 11 | name: 'Home', |
| 12 | slug: '', |
| 13 | }, |
| 14 | { |
| 15 | name: 'Ready to Play!', |
| 16 | slug: 'ready-to-play', |
| 17 | }, |
| 18 | { |
| 19 | name: 'Top voted', |
| 20 | slug: 'top-voted', |
| 21 | }, |
| 22 | ], |
| 23 | }, |
| 24 | ]; |