|
| 1 | +const siteName = 'Nuxt - Laravel Echo' |
| 2 | + |
| 3 | +export default defineAppConfig({ |
| 4 | + ui: { |
| 5 | + colors: { |
| 6 | + primary: 'red', |
| 7 | + neutral: 'zinc' |
| 8 | + }, |
| 9 | + footer: { |
| 10 | + slots: { |
| 11 | + root: 'border-t border-default', |
| 12 | + left: 'text-sm text-muted' |
| 13 | + } |
| 14 | + } |
| 15 | + }, |
| 16 | + seo: { |
| 17 | + siteName: siteName |
| 18 | + }, |
| 19 | + header: { |
| 20 | + title: siteName, |
| 21 | + to: '/', |
| 22 | + logo: { |
| 23 | + alt: 'Laravel Echo', |
| 24 | + light: 'logo.svg', |
| 25 | + dark: 'logo.svg' |
| 26 | + }, |
| 27 | + search: true, |
| 28 | + colorMode: true, |
| 29 | + links: [ |
| 30 | + { |
| 31 | + 'icon': 'i-simple-icons-github', |
| 32 | + 'to': 'https://github.com/manchenkoff/nuxt-laravel-echo', |
| 33 | + 'target': '_blank', |
| 34 | + 'aria-label': 'GitHub' |
| 35 | + }, |
| 36 | + { |
| 37 | + 'icon': 'i-simple-icons-nuxt', |
| 38 | + 'to': 'https://nuxt.com/modules/nuxt-laravel-echo', |
| 39 | + 'target': '_blank', |
| 40 | + 'aria-label': 'Nuxt Module' |
| 41 | + } |
| 42 | + ] |
| 43 | + }, |
| 44 | + footer: { |
| 45 | + credits: `Artem Manchenkov © ${new Date().getFullYear()}`, |
| 46 | + colorMode: false, |
| 47 | + links: [ |
| 48 | + { |
| 49 | + 'icon': 'i-simple-icons-github', |
| 50 | + 'to': 'https://github.com/manchenkoff', |
| 51 | + 'target': '_blank', |
| 52 | + 'aria-label': 'manchenkoff on GitHub' |
| 53 | + }, |
| 54 | + { |
| 55 | + 'icon': 'i-simple-icons-twitter', |
| 56 | + 'to': 'https://twitter.com/amanchenkov', |
| 57 | + 'target': '_blank', |
| 58 | + 'aria-label': 'manchenkoff on X' |
| 59 | + }, |
| 60 | + { |
| 61 | + 'icon': 'i-simple-icons-facebook', |
| 62 | + 'to': 'https://fb.com/manchenkoff', |
| 63 | + 'target': '_blank', |
| 64 | + 'aria-label': 'manchenkoff on Facebook' |
| 65 | + }, |
| 66 | + { |
| 67 | + 'icon': 'i-simple-icons-linkedin', |
| 68 | + 'to': 'https://linkedin.com/in/manchenkoff', |
| 69 | + 'target': '_blank', |
| 70 | + 'aria-label': 'manchenkoff on LinkedIn' |
| 71 | + }, |
| 72 | + { |
| 73 | + 'icon': 'i-simple-icons-instagram', |
| 74 | + 'to': 'https://instagram.com/manchenkof', |
| 75 | + 'target': '_blank', |
| 76 | + 'aria-label': 'manchenkoff on Instagram' |
| 77 | + }, |
| 78 | + { |
| 79 | + 'icon': 'i-simple-icons-threads', |
| 80 | + 'to': 'https://threads.net/@manchenkof', |
| 81 | + 'target': '_blank', |
| 82 | + 'aria-label': 'manchenkoff on Threads' |
| 83 | + }, |
| 84 | + { |
| 85 | + 'icon': 'i-simple-icons-youtube', |
| 86 | + 'to': 'https://youtube.com/@manchenkoff', |
| 87 | + 'target': '_blank', |
| 88 | + 'aria-label': 'manchenkoff on YouTube' |
| 89 | + }, |
| 90 | + { |
| 91 | + 'icon': 'i-simple-icons-medium', |
| 92 | + 'to': 'https://manchenkoff.medium.com/', |
| 93 | + 'target': '_blank', |
| 94 | + 'aria-label': 'manchenkoff on Medium' |
| 95 | + }, |
| 96 | + { |
| 97 | + 'icon': 'i-simple-icons-telegram', |
| 98 | + 'to': 'https://t.me/manchenkoff', |
| 99 | + 'target': '_blank', |
| 100 | + 'aria-label': 'manchenkoff on Telegram' |
| 101 | + }, |
| 102 | + { |
| 103 | + 'icon': 'i-simple-icons-bluesky', |
| 104 | + 'to': 'https://bsky.app/profile/manchenkoff.bsky.social', |
| 105 | + 'target': '_blank', |
| 106 | + 'aria-label': 'manchenkoff on Bluesky' |
| 107 | + } |
| 108 | + ] |
| 109 | + }, |
| 110 | + toc: { |
| 111 | + title: 'Table of Contents', |
| 112 | + bottom: { |
| 113 | + title: 'Ready to contribute?', |
| 114 | + edit: 'https://github.com/nuxt-ui-templates/docs/edit/main/content', |
| 115 | + links: [ |
| 116 | + { |
| 117 | + icon: 'i-lucide-star', |
| 118 | + label: 'Star on GitHub', |
| 119 | + to: 'https://github.com/manchenkoff/nuxt-laravel-echo', |
| 120 | + target: '_blank' |
| 121 | + }, |
| 122 | + { |
| 123 | + icon: 'i-lucide-git-pull-request-create', |
| 124 | + label: 'Suggest a feature', |
| 125 | + to: 'https://github.com/manchenkoff/nuxt-laravel-echo/issues/new?template=feature_request.md', |
| 126 | + target: '_blank' |
| 127 | + }, |
| 128 | + { |
| 129 | + icon: 'i-simple-icons-github', |
| 130 | + label: 'Support project', |
| 131 | + to: 'https://github.com/sponsors/manchenkoff?o=esb', |
| 132 | + target: '_blank' |
| 133 | + }, |
| 134 | + { |
| 135 | + icon: 'i-simple-icons-buymeacoffee', |
| 136 | + label: 'Buy me a coffee', |
| 137 | + to: 'https://buymeacoffee.com/manchenkoff', |
| 138 | + target: '_blank' |
| 139 | + } |
| 140 | + ] |
| 141 | + } |
| 142 | + } |
| 143 | +}) |
0 commit comments