mirror of
https://github.com/withastro/astro.git
synced 2025-02-17 22:44:24 -05:00
14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
export const sidebar = [
|
|
{
|
|
text: 'Introduction',
|
|
children: [
|
|
{ text: 'Welcome', link: '/' },
|
|
{ text: 'Example', link: '/example' },
|
|
],
|
|
},
|
|
];
|
|
|
|
export const mediaQueries = {
|
|
mobile: '(max-width: 600px)',
|
|
desktop: '(min-width: 601px)',
|
|
};
|