summaryrefslogtreecommitdiff
path: root/www/src/config.ts
blob: 9692643020324a845f62c501b2b9cb812f66a969 (plain) (blame)
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)',
};