@prosophia/lab-techy 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +51 -9
- package/dist/index.d.ts +51 -9
- package/dist/index.js +72 -56
- package/dist/index.mjs +71 -56
- package/dist/layouts/index.js +46 -56
- package/dist/layouts/index.mjs +46 -56
- package/package.json +1 -1
- package/dist/index.css +0 -281
- package/dist/layouts/index.css +0 -281
package/dist/layouts/index.css
DELETED
|
@@ -1,281 +0,0 @@
|
|
|
1
|
-
/* src/components/Header.module.css */
|
|
2
|
-
.header {
|
|
3
|
-
position: sticky;
|
|
4
|
-
top: 0;
|
|
5
|
-
z-index: 50;
|
|
6
|
-
width: 100%;
|
|
7
|
-
border-bottom: 1px solid var(--slate-200);
|
|
8
|
-
background-color: rgba(246, 246, 248, 0.8);
|
|
9
|
-
backdrop-filter: blur(12px);
|
|
10
|
-
}
|
|
11
|
-
.container {
|
|
12
|
-
max-width: var(--container-max);
|
|
13
|
-
margin: 0 auto;
|
|
14
|
-
display: flex;
|
|
15
|
-
height: 4rem;
|
|
16
|
-
align-items: center;
|
|
17
|
-
justify-content: space-between;
|
|
18
|
-
padding: 0 1rem;
|
|
19
|
-
}
|
|
20
|
-
@media (min-width: 640px) {
|
|
21
|
-
.container {
|
|
22
|
-
padding: 0 1.5rem;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
@media (min-width: 1024px) {
|
|
26
|
-
.container {
|
|
27
|
-
padding: 0 2rem;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
.logo {
|
|
31
|
-
display: flex;
|
|
32
|
-
align-items: center;
|
|
33
|
-
gap: 1rem;
|
|
34
|
-
text-decoration: none;
|
|
35
|
-
}
|
|
36
|
-
.logoIcon {
|
|
37
|
-
display: flex;
|
|
38
|
-
width: 2rem;
|
|
39
|
-
height: 2rem;
|
|
40
|
-
align-items: center;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
border-radius: var(--radius-sm);
|
|
43
|
-
background-color: var(--primary);
|
|
44
|
-
color: var(--white);
|
|
45
|
-
}
|
|
46
|
-
.logoIcon span {
|
|
47
|
-
font-size: 20px;
|
|
48
|
-
}
|
|
49
|
-
.logoText {
|
|
50
|
-
font-size: 1.125rem;
|
|
51
|
-
font-weight: 700;
|
|
52
|
-
letter-spacing: -0.025em;
|
|
53
|
-
color: var(--slate-900);
|
|
54
|
-
}
|
|
55
|
-
.nav {
|
|
56
|
-
display: none;
|
|
57
|
-
flex: 1;
|
|
58
|
-
align-items: center;
|
|
59
|
-
justify-content: flex-end;
|
|
60
|
-
gap: 2rem;
|
|
61
|
-
}
|
|
62
|
-
@media (min-width: 768px) {
|
|
63
|
-
.nav {
|
|
64
|
-
display: flex;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
.navLinks {
|
|
68
|
-
display: flex;
|
|
69
|
-
align-items: center;
|
|
70
|
-
gap: 1.5rem;
|
|
71
|
-
}
|
|
72
|
-
.navLink {
|
|
73
|
-
font-size: 0.875rem;
|
|
74
|
-
font-weight: 500;
|
|
75
|
-
color: var(--slate-600);
|
|
76
|
-
transition: color var(--timing-quick) var(--ease-out-expo);
|
|
77
|
-
}
|
|
78
|
-
.navLink:hover {
|
|
79
|
-
color: var(--primary);
|
|
80
|
-
}
|
|
81
|
-
.navLinkActive {
|
|
82
|
-
color: var(--primary);
|
|
83
|
-
font-weight: 600;
|
|
84
|
-
}
|
|
85
|
-
.ctaButton {
|
|
86
|
-
display: inline-flex;
|
|
87
|
-
height: 2.25rem;
|
|
88
|
-
align-items: center;
|
|
89
|
-
justify-content: center;
|
|
90
|
-
border-radius: var(--radius-lg);
|
|
91
|
-
background-color: var(--primary);
|
|
92
|
-
padding: 0 1rem;
|
|
93
|
-
font-size: 0.875rem;
|
|
94
|
-
font-weight: 700;
|
|
95
|
-
color: var(--white);
|
|
96
|
-
box-shadow: var(--shadow-sm);
|
|
97
|
-
transition: background-color var(--timing-quick) var(--ease-out-expo);
|
|
98
|
-
}
|
|
99
|
-
.ctaButton:hover {
|
|
100
|
-
background-color: var(--primary-dark);
|
|
101
|
-
}
|
|
102
|
-
.mobileActions {
|
|
103
|
-
display: flex;
|
|
104
|
-
align-items: center;
|
|
105
|
-
gap: 0.5rem;
|
|
106
|
-
}
|
|
107
|
-
@media (min-width: 768px) {
|
|
108
|
-
.mobileActions {
|
|
109
|
-
display: none;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
.mobileMenuBtn {
|
|
113
|
-
display: block;
|
|
114
|
-
padding: 0.5rem;
|
|
115
|
-
color: var(--slate-600);
|
|
116
|
-
}
|
|
117
|
-
[data-theme=dark] .header {
|
|
118
|
-
background-color: rgba(15, 23, 42, 0.9);
|
|
119
|
-
border-bottom-color: var(--slate-200);
|
|
120
|
-
}
|
|
121
|
-
[data-theme=dark] .logoIcon {
|
|
122
|
-
color: var(--slate-900);
|
|
123
|
-
}
|
|
124
|
-
[data-theme=dark] .ctaButton {
|
|
125
|
-
color: var(--slate-900);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
/* src/components/ThemeToggle.module.css */
|
|
129
|
-
.toggle {
|
|
130
|
-
display: flex;
|
|
131
|
-
align-items: center;
|
|
132
|
-
justify-content: center;
|
|
133
|
-
width: 2.5rem;
|
|
134
|
-
height: 2.5rem;
|
|
135
|
-
border-radius: var(--radius-full);
|
|
136
|
-
background-color: var(--slate-100);
|
|
137
|
-
color: var(--slate-600);
|
|
138
|
-
border: 1px solid var(--slate-200);
|
|
139
|
-
cursor: pointer;
|
|
140
|
-
transition: all var(--timing-quick) var(--ease-out-expo);
|
|
141
|
-
}
|
|
142
|
-
.toggle:hover {
|
|
143
|
-
background-color: var(--slate-200);
|
|
144
|
-
color: var(--primary);
|
|
145
|
-
}
|
|
146
|
-
.toggle span {
|
|
147
|
-
font-size: 1.25rem;
|
|
148
|
-
}
|
|
149
|
-
[data-theme=dark] .toggle {
|
|
150
|
-
background-color: var(--slate-800);
|
|
151
|
-
border-color: var(--slate-700);
|
|
152
|
-
color: var(--slate-300);
|
|
153
|
-
}
|
|
154
|
-
[data-theme=dark] .toggle:hover {
|
|
155
|
-
background-color: var(--slate-700);
|
|
156
|
-
color: var(--primary);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
/* src/components/Footer.module.css */
|
|
160
|
-
.footer {
|
|
161
|
-
border-top: 1px solid var(--slate-200);
|
|
162
|
-
background-color: var(--white);
|
|
163
|
-
padding: 3rem 0;
|
|
164
|
-
}
|
|
165
|
-
.container {
|
|
166
|
-
max-width: var(--container-max);
|
|
167
|
-
margin: 0 auto;
|
|
168
|
-
padding: 0 1rem;
|
|
169
|
-
}
|
|
170
|
-
@media (min-width: 640px) {
|
|
171
|
-
.container {
|
|
172
|
-
padding: 0 1.5rem;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
@media (min-width: 1024px) {
|
|
176
|
-
.container {
|
|
177
|
-
padding: 0 2rem;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
.grid {
|
|
181
|
-
display: grid;
|
|
182
|
-
gap: 2rem;
|
|
183
|
-
}
|
|
184
|
-
@media (min-width: 768px) {
|
|
185
|
-
.grid {
|
|
186
|
-
grid-template-columns: 2fr 1fr 1fr;
|
|
187
|
-
gap: 3rem;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
.brandSection {
|
|
191
|
-
grid-column: span 1;
|
|
192
|
-
}
|
|
193
|
-
@media (min-width: 768px) {
|
|
194
|
-
.brandSection {
|
|
195
|
-
grid-column: span 1;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
.logo {
|
|
199
|
-
display: flex;
|
|
200
|
-
align-items: center;
|
|
201
|
-
gap: 0.75rem;
|
|
202
|
-
}
|
|
203
|
-
.logoIcon {
|
|
204
|
-
display: flex;
|
|
205
|
-
width: 2rem;
|
|
206
|
-
height: 2rem;
|
|
207
|
-
align-items: center;
|
|
208
|
-
justify-content: center;
|
|
209
|
-
border-radius: var(--radius-sm);
|
|
210
|
-
background-color: var(--primary);
|
|
211
|
-
color: var(--white);
|
|
212
|
-
}
|
|
213
|
-
.logoIcon span {
|
|
214
|
-
font-size: 20px;
|
|
215
|
-
}
|
|
216
|
-
.logoText {
|
|
217
|
-
font-size: 1.25rem;
|
|
218
|
-
font-weight: 700;
|
|
219
|
-
color: var(--slate-900);
|
|
220
|
-
}
|
|
221
|
-
.description {
|
|
222
|
-
margin-top: 1rem;
|
|
223
|
-
max-width: 24rem;
|
|
224
|
-
font-size: 0.875rem;
|
|
225
|
-
color: var(--slate-600);
|
|
226
|
-
line-height: 1.6;
|
|
227
|
-
}
|
|
228
|
-
.socialLinks {
|
|
229
|
-
display: flex;
|
|
230
|
-
gap: 1rem;
|
|
231
|
-
margin-top: 1.5rem;
|
|
232
|
-
}
|
|
233
|
-
.socialLink {
|
|
234
|
-
color: var(--slate-400);
|
|
235
|
-
transition: color var(--timing-quick) var(--ease-out-expo);
|
|
236
|
-
}
|
|
237
|
-
.socialLink:hover {
|
|
238
|
-
color: var(--primary);
|
|
239
|
-
}
|
|
240
|
-
.socialIcon {
|
|
241
|
-
width: 1.25rem;
|
|
242
|
-
height: 1.25rem;
|
|
243
|
-
}
|
|
244
|
-
.linksSection {
|
|
245
|
-
display: flex;
|
|
246
|
-
flex-direction: column;
|
|
247
|
-
}
|
|
248
|
-
.linksSectionTitle {
|
|
249
|
-
font-size: 0.875rem;
|
|
250
|
-
font-weight: 600;
|
|
251
|
-
text-transform: uppercase;
|
|
252
|
-
color: var(--slate-900);
|
|
253
|
-
margin-bottom: 1rem;
|
|
254
|
-
}
|
|
255
|
-
.linksList {
|
|
256
|
-
list-style: none;
|
|
257
|
-
display: flex;
|
|
258
|
-
flex-direction: column;
|
|
259
|
-
gap: 0.75rem;
|
|
260
|
-
}
|
|
261
|
-
.link {
|
|
262
|
-
font-size: 0.875rem;
|
|
263
|
-
color: var(--slate-600);
|
|
264
|
-
transition: color var(--timing-quick) var(--ease-out-expo);
|
|
265
|
-
}
|
|
266
|
-
.link:hover {
|
|
267
|
-
color: var(--primary);
|
|
268
|
-
}
|
|
269
|
-
.bottom {
|
|
270
|
-
margin-top: 3rem;
|
|
271
|
-
padding-top: 2rem;
|
|
272
|
-
border-top: 1px solid var(--slate-200);
|
|
273
|
-
}
|
|
274
|
-
.copyright {
|
|
275
|
-
text-align: center;
|
|
276
|
-
font-size: 0.875rem;
|
|
277
|
-
color: var(--slate-500);
|
|
278
|
-
}
|
|
279
|
-
[data-theme=dark] .logoIcon {
|
|
280
|
-
color: var(--slate-900);
|
|
281
|
-
}
|