-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.config.ts
130 lines (129 loc) · 3.13 KB
/
app.config.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import type Emoji from "./components/OgImage/Emoji.vue";
export default defineAppConfig({
general: {
title: "Minted Directory",
logo: "",
iconLogo: "fluent-emoji-flat:leaf-fluttering-in-wind",
},
site: {
// override the general settings for seo tags.
// leave empty for general priority.
// url is necessary for correct function of seo module.
name: "Minted Directory",
description: "Example Description",
url: "https://example.com",
favicon: {
image: "",
emoji: "🍃",
},
},
directory: {
search: {
placeholder: "Search among {0} tools",
icon: "tabler:bow",
tags: {
// options: none,select,show-all,
display: "select",
intersection: false,
},
},
grid: {
list: false,
emptyState: {
text: "Seems that this entry is missing from the archives.",
// options: button, simple, link
type: "button",
icon: "tabler:exclamation-mark",
},
card: {
image: true,
// options: dashed, shadow, outline, bullet
type: "shadow",
},
submit: {
show: true,
first: false,
title: "Submit a template",
description:
"Submit a template to show off a good project to other people.",
hideable: true,
},
},
featured: {
showOnAllPages: true,
showOnSide: true,
icon: "tabler:star",
labelForCard: "Featured ✨",
},
tags: [
{ name: "SAAS", color: "blue" },
{ name: "dashboard", color: "green" },
{ name: "landing-page" },
{ name: "toolbox" },
{ name: "agency" },
{ name: "markdown-based" },
{ name: "basics", color: "indigo" },
],
tagPages: {
title: "Available {0} products:",
description:
"View all available tools and templates in the {0} category...",
},
},
header: {
banner: {
show: true,
text: "Create your own directory website in minutes.",
link: "https://minteddirectory.com",
brandText: "MintedDirectory",
},
navbar: {
colorModeSelector: true,
links: [
{ name: "Directory", to: "/" },
{ name: "Blog", to: "/blog" },
{ name: "Advertise", to: "/advertise" },
{
name: "Analytics",
to: "https://us.posthog.com/shared/7dgSk4cvgNYnJwBu6R47kZXHBUBJWQ",
target: "_blank",
},
],
},
actionButton: {
text: "Submit a starter",
href: "/submit",
},
},
footer: {
description: "Best directory for my niche.",
socials: {
github: {
link: "",
icon: "tabler:brand-github",
},
facebook: {
link: "",
icon: "tabler:brand-facebook",
},
instagram: {
link: "",
icon: "tabler:brand-instagram",
},
x: {
link: "https://x.com/mark_bruderer",
icon: "tabler:brand-twitter",
},
youtube: {
link: "https://www.youtube.com/@mark_hacks",
icon: "tabler:brand-youtube",
},
},
},
ui: {
icons: {
dark: "tabler:moon",
light: "tabler:sun",
},
},
});