1 2 3 4 5 6 7 8 9 10 11 12 13 14
export const sidebar = [ { text: 'Introduction', children: [ { text: 'Welcome', link: '/' }, { text: 'Example', link: '/example' }, ], }, ]; export const mediaQueries = { mobile: '(max-width: 600px)', desktop: '(min-width: 601px)', };