-
Notifications
You must be signed in to change notification settings - Fork 20
/
site.ts
executable file
·42 lines (41 loc) · 1.16 KB
/
site.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// since `.js, .ts` files are not included by default,
// the following comment tells UnoCSS to force scan this file (to pick the logo icon).
// @unocss-include
export default {
name: 'Happy Paws',
description: 'Adopt Your Fur Mate',
logo: 'i-noto:cat-face',
author: 'Pinegrow',
url: 'https://happy-paws-with-nuxt-tailwindcss.netlify.app',
github: 'https://github.com/pinegrow/happy-paws-with-nuxt-tailwindcss',
defaultLocale: 'en', // default
identity: {
type: 'Organization',
} as any,
twitter: '@vuedesigner',
trailingSlash: false, // default
titleSeparator: '|', // default
nav: [
{ text: 'Home', link: '/', type: 'primary', icon: 'i-mdi-home' },
{ text: 'Adopt Now', link: '/adopt', type: 'primary', icon: 'i-mdi-home' },
{
text: 'Donate',
link: '/quick-start',
type: 'secondary',
icon: 'i-mdi-home',
},
{
text: 'Articles',
link: '/articles',
type: 'secondary',
icon: 'i-mdi-home',
},
{ text: 'Blog', link: '/blog', type: 'secondary', icon: 'i-mdi-home' },
{
text: 'Volunteer',
link: '/volunteer',
type: 'secondary',
icon: 'i-mdi-home',
},
],
}