-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.config.ts
189 lines (189 loc) · 5.26 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
export default defineAppConfig({
ui: {
primary: "indigo",
gray: "neutral",
},
site: {
name: "Nuxt SaaS Starter",
description: "Build and deploy your Nuxt SaaS within minutes",
logo: "/logo.svg",
social: {
github: "https://github.com/devstack-be/nuxt-saas-stripe-starter",
},
},
seo: {
siteName: "Nuxt SaaS Starter",
},
footer: {
credits: "Devstack © 2024. All rights reserved.",
navigation: [
{ name: "Pricing", href: "/pricing" },
{ name: "Docs", href: "/docs" },
],
links: [
{
icon: "i-simple-icons-nuxtdotjs",
to: "https://nuxt.com",
target: "_blank",
"aria-label": "Nuxt Website",
},
{
icon: "i-simple-icons-github",
to: "https://github.com/devstack-be/nuxt-saas-stripe-starter",
target: "_blank",
"aria-label": "Nuxt SaaS Starter GitHub",
},
],
},
subscriptions: {
frequencies: [
{ value: "monthly", label: "Monthly", default: true },
{ value: "yearly", label: "Yearly (-20%)" },
],
currency: "USD",
plans: [
{
title: "Starter",
description: "For Beginners",
benefits: [
"Up to 100 monthly posts",
"Basic analytics and reporting",
"Access to standard templates",
],
prices: {
monthly: 0,
yearly: 0,
},
stripeIds: {
monthly: null,
yearly: null,
},
},
{
mostPopular: true,
title: "Pro",
description: "Unlock Advanced Features",
benefits: [
"Up to 500 monthly posts",
"Advanced analytics and reporting",
"Access to business templates",
"Priority customer support",
"Exclusive webinars and training.",
],
prices: {
monthly: 15,
yearly: 144,
},
stripeIds: {
monthly: "price_1PU9E9LAtQLLkA4NvFq3CjKh",
yearly: "price_1PU9ELLAtQLLkA4NKB10WtN8",
},
},
{
title: "Business",
description: "For Power Users",
benefits: [
"Unlimited posts",
"Real-time analytics and reporting",
"Access to all templates, including custom branding",
"24/7 business customer support",
"Personalized onboarding and account management.",
],
prices: {
monthly: 30,
yearly: 300,
},
stripeIds: {
monthly: "price_1PU9EwLAtQLLkA4NlfujMvYV",
yearly: "price_1PU9FFLAtQLLkA4NpZDeEKUL",
},
},
],
},
pricing: {
title: "Pricing",
subtitle: "Pricing plans for teams of all sizes",
description:
"Choose an affordable plan that’s packed with the best features for engaging your audience, creating customer loyalty, and driving sales.",
},
CTA: {
title: "Ready to get started?",
description:
"Sign up for Devstack today and start building beautiful web applications in minutes.",
buttons: {
auth: [
{
label: "Dashboard",
to: "/dashboard",
size: "lg",
icon: "i-heroicons-arrow-right",
trailing: true,
},
],
guest: [
{
label: "See our pricings",
to: "/pricing",
size: "lg",
icon: "i-heroicons-arrow-right",
trailing: true,
},
],
},
},
features: {
title: "Deploy faster",
subtitle: "Everything you need to deploy your app",
description:
"Devstack is a full-featured platform that helps you build and deploy web applications in a matter of minutes.",
items: [
{
title: "Build faster",
description:
"Create a new app in minutes with our easy-to-use platform.",
icon: "i-simple-icons-nuxtdotjs",
},
{
title: "Deploy instantly",
description: "Deploy your app to the cloud with a single click.",
icon: "i-simple-icons-vercel",
},
{
title: "Integrate seamlessly",
description: "Connect your app to your favorite tools and services.",
icon: "i-simple-icons-figma",
},
{
title: "Scale effortlessly",
description:
"Scale your app to millions of users without breaking a sweat.",
icon: "i-simple-icons-amazonaws",
},
],
},
faq: {
title: "Frequently Asked Questions",
items: [
{
question: "What is Devstack?",
answer:
"Devstack is a full-featured platform that helps you build and deploy web applications in a matter of minutes.",
},
{
question: "How do I cancel my subscription?",
answer:
"You can cancel your subscription at any time by logging into your account and following the instructions.",
},
{
question: "Can I change my plan later on?",
answer:
"Yes, you can upgrade or downgrade your plan at any time. Your new plan will take effect at the end of your current billing cycle.",
},
{
question: "Do you offer discounts for non-profit organizations?",
answer:
"Yes, we offer a 20% discount to non-profit organizations. Please contact us for more information.",
},
],
},
});