-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.jsx
More file actions
198 lines (191 loc) · 4.75 KB
/
data.jsx
File metadata and controls
198 lines (191 loc) · 4.75 KB
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
190
191
192
193
194
195
196
197
198
import { nanoid } from "nanoid";
export const popupMenuItems = [
{
id: nanoid(),
name: "CSS",
compKey: "CssContent",
},
{
id: nanoid(),
name: "Tailwind CSS",
compKey: "TailwindContent",
},
{
id: nanoid(),
name: "SCSS",
compKey: "ScssContent",
},
{
id: nanoid(),
name: "Custom Code",
compKey: "CustomCodeContent",
},
{
id: nanoid(),
name: "Shades",
compKey: "ShadesContent",
},
{
id: nanoid(),
name: "Gradients",
compKey: "GradientsContent",
},
{
id: nanoid(),
name: "QR",
compKey: "QrContent",
},
{
id: nanoid(),
name: "Download",
compKey: "DownloadContent",
},
];
export const subMenuItems = [
{
id: nanoid(),
name: "HEX",
},
{
id: nanoid(),
name: "RGB",
},
{
id: nanoid(),
name: "HSL",
},
{
id: nanoid(),
name: "OKLAB",
},
{
id: nanoid(),
name: "OKLCH",
},
];
export const pricingData = [
{
id: nanoid(),
header: "Basic",
pricing: "Free",
btnName: "Get Started",
lists: [
{
id: nanoid(),
text: "Choose any color",
},
{
id: nanoid(),
text: "Export all you want",
},
],
},
{
id: nanoid(),
header: "Pro",
pricing: "$0.00 / month",
btnName: "Go to Dashboard",
lists: [
{
id: nanoid(),
text: "Choose any color",
},
{
id: nanoid(),
text: "Export all you want Get a big thank yout",
},
{
id: nanoid(),
text: "for checking this site out",
},
{
id: nanoid(),
text: "Get access to dashboard",
},
],
},
{
id: nanoid(),
header: "Enterprise",
pricing: "$0.00 / month",
btnName: "Learn More",
lists: [
{
id: nanoid(),
text: "Choose any color",
},
{
id: nanoid(),
text: "Export all you want Get a big thank yout",
},
{
id: nanoid(),
text: "for checking this site out",
},
{
id: nanoid(),
text: "Get access to dashboard",
},
{
id: nanoid(),
text: "Super duper exclusive members-only content.",
},
],
},
];
export const testimonialsItems = [
{
id: nanoid(),
userName: "Cool User",
profession: "Product Designer",
comment:
'"Wow! I love this site. Realtime Colors is all websites at the same time."',
},
{
id: nanoid(),
userName: "Creative Person",
profession: "Product Owner",
comment:
'"Amazing. I found my favorite colors in literally... 2 minutes? Woah! Totally real review."',
},
{
id: nanoid(),
userName: "Real Reviewer",
profession: "Developer",
comment:
'"Astonished. This product is so cool. You should try it and upgrade to Enterprise plan. No kidding."',
},
];
export const accordionItems = [
{
id: nanoid(),
title: "How many colors should I choose?",
content: `Normally, 3 colors are absolutely fine (meaning background, text, and one accent color).
However, if you want, you can have more. Usually, we don’t add more than 6 colors across a platform. It would just make things too... complicated. Plus, it makes it hard to keep the colors consistent throughout the design.`,
},
{
id: nanoid(),
title: "How does the contrast checker work?",
content: `The contrast checker shows the contrast ratio between the selected color and its background/foreground.
The contrast checker has 3 lights:
x / Red: The contrast ratio does not pass either AAA or AA. Therefore, both large and normal texts are hardly readable.
- / Yellow: The contrast ratio might pass AA but won't pass AAA. Large texts might be readable but normal texts are probably not readable.
✓ / Green: The contrast ratio passes both AA and AAA. Both large and normal texts are readable.
Learn more about the contrast checker.`,
},
{
id: nanoid(),
title: "What does the hero image represent?",
content: `The hero image is inspired by Piet Mondrian's Composition with Large Red Plane, Yellow, Black, Grey and Blue. This composition keeps the ratio of the main colors (red, blue, and yellow) very close to the 60-30-10 rule of UI design. This is mainly why I've chosen this composition to visualize the distribution of the colors on the page.`,
},
{
id: nanoid(),
title: "How can I set up the fonts?",
content: `You can enter the name of a font from Google Fonts or the fonts installed on your device. Read more about Font Setup.`,
},
{
id: nanoid(),
title: "How can I learn more about this tool?",
content: `You can find more information about Realtime Colors on the Docs. You can also contact me for any questions you might have.`,
},
];