-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig.ts
64 lines (62 loc) · 1.7 KB
/
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
export type Config = typeof siteConfig;
export const siteConfig = {
name: "Mockly",
url: "https://www.mockly.site",
author : "Suryansh Singh",
authorImage : "https://avatars.githubusercontent.com/u/80690023?s=96&v=4",
ogImage: "/icon-512.png",
description:
"Mockly streamlines the process of creating stunning mockups for your projects. No design skills? No problem. Pick your screenshots, customize backgrounds, and add text—all without leaving your browser. Fast, easy, and fully client-side.",
pricing: [
{
name: "Starter",
price: "Free",
isRecommended: true,
features: [
"Unlimited screenshot creation",
"No login required",
"Access to all screen sizes (mobile, tablet, desktop)",
"Custom backgrounds & text",
"No watermarks",
],
},
{
name: "Pro",
isRecommended: false,
price: "Coming Soon",
features: [
"All Free features",
"Cloud storage",
"Additional templates and backgrounds",
"Priority support",
"Collaborative editing",
],
},
// {
// name: "Pro",
// price: "$12/mo",
// features: [
// "All Free features",
// "Priority support",
// "Unlimited integrations",
// "Custom analytics",
// ],
// },
{
name: "Enterprise",
price: "Custom",
isRecommended: false,
features: [
"All Pro features",
"Custom SLA",
"Dedicated account manager",
"Custom branding",
]
},
],
isEditorActive: true,
socialLinks: {
twitter: "https://x.com/SuryanshSi2001",
github: "https://github.com/suryanshsingh2001/mockly",
},
};