|
| 1 | +export default { |
| 2 | + title: 'Scriptable iOS Widgets', |
| 3 | + description: 'Custom iOS Widgets built with Scriptable by rushhiii', |
| 4 | + base: process.env.VITEPRESS_BASE || '/Scriptable-IOSWidgets/', // Configurable base path |
| 5 | + |
| 6 | + head: [ |
| 7 | + ['link', { rel: 'icon', href: `${process.env.VITEPRESS_BASE || '/Scriptable-IOSWidgets/'}/favicon.ico` }], |
| 8 | + ['meta', { name: 'theme-color', content: '#5f67ee' }], |
| 9 | + ['meta', { property: 'og:type', content: 'website' }], |
| 10 | + ['meta', { property: 'og:locale', content: 'en' }], |
| 11 | + ['meta', { property: 'og:title', content: 'Scriptable iOS Widgets | Beautiful Custom Widgets' }], |
| 12 | + ['meta', { property: 'og:site_name', content: 'Scriptable iOS Widgets' }], |
| 13 | + ['meta', { property: 'og:url', content: 'https://rushhiii.github.io/Scriptable-IOSWidgets/' }] |
| 14 | + ], |
| 15 | + |
| 16 | + themeConfig: { |
| 17 | + logo: 'https://raw.githubusercontent.com/rushhiii/Scriptable-IOSWidgets/main/.src/scriptable_icon.png', |
| 18 | + |
| 19 | + nav: [ |
| 20 | + { text: 'Home', link: '/' }, |
| 21 | + { text: 'Widgets', link: '/widgets/' }, |
| 22 | + { text: 'GitHub', link: 'https://github.com/rushhiii/Scriptable-IOSWidgets' } |
| 23 | + ], |
| 24 | + |
| 25 | + sidebar: [ |
| 26 | + { |
| 27 | + text: '🚀 Getting Started', |
| 28 | + items: [ |
| 29 | + { text: 'Introduction', link: '/' }, |
| 30 | + { text: 'Installation', link: '/installation' } |
| 31 | + ] |
| 32 | + }, |
| 33 | + { |
| 34 | + text: '📱 Widgets', |
| 35 | + items: [ |
| 36 | + { text: 'AQI Widget', link: '/widgets/aqi-widget' }, |
| 37 | + { text: 'Birthday Widget', link: '/widgets/birthday-widget' }, |
| 38 | + { text: 'Countdown Widget', link: '/widgets/countdown-widget' }, |
| 39 | + { text: 'GitHub Stats Widget', link: '/widgets/github-stats-widget' }, |
| 40 | + { text: 'Hindu Calendar Widget', link: '/widgets/hindu-calendar-widget' }, |
| 41 | + { text: 'Quote Widget', link: '/widgets/quote-widget' }, |
| 42 | + { text: 'Schedule Widget', link: '/widgets/schedule-widget' }, |
| 43 | + { text: 'Time Progress Widget', link: '/widgets/time-progress-widget' }, |
| 44 | + { text: 'Toyota Widget', link: '/widgets/toyota-widget' }, |
| 45 | + { text: 'Weather Widget', link: '/widgets/weather-widget' } |
| 46 | + ] |
| 47 | + }, |
| 48 | + { |
| 49 | + text: '📚 Resources', |
| 50 | + items: [ |
| 51 | + { text: 'Scriptable Documentation', link: 'https://docs.scriptable.app/' }, |
| 52 | + { text: 'Contributing', link: '/contributing' } |
| 53 | + ] |
| 54 | + } |
| 55 | + ], |
| 56 | + |
| 57 | + socialLinks: [ |
| 58 | + { icon: 'github', link: 'https://github.com/rushhiii/Scriptable-IOSWidgets' } |
| 59 | + ], |
| 60 | + |
| 61 | + footer: { |
| 62 | + message: 'Released under the MIT License.', |
| 63 | + copyright: 'Copyright © 2024-present rushhiii' |
| 64 | + }, |
| 65 | + |
| 66 | + editLink: { |
| 67 | + pattern: 'https://github.com/rushhiii/Scriptable-IOSWidgets/edit/main/docs/:path' |
| 68 | + }, |
| 69 | + |
| 70 | + search: { |
| 71 | + provider: 'local' |
| 72 | + } |
| 73 | + } |
| 74 | +} |
0 commit comments