@ansiversa/components 0.0.26 → 0.0.27
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/package.json +1 -1
- package/src/styles/global.css +177 -0
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -272,6 +272,76 @@
|
|
|
272
272
|
|
|
273
273
|
/* Hero / Sections -------------------------------------- */
|
|
274
274
|
|
|
275
|
+
/* Web page helpers (hero / sections) --------------------- */
|
|
276
|
+
|
|
277
|
+
.av-kicker {
|
|
278
|
+
@apply inline-flex items-center gap-2 rounded-full border border-slate-700/70 bg-slate-900/70 px-3 py-1 text-[0.7rem] uppercase tracking-[0.16em] text-slate-300;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.av-hero-lead {
|
|
282
|
+
@apply mt-4 text-base sm:text-lg text-slate-300 max-w-2xl;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.av-section-stack {
|
|
286
|
+
@apply space-y-10 md:space-y-12;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.av-row {
|
|
290
|
+
@apply flex items-center gap-3;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.av-row-wrap {
|
|
294
|
+
@apply flex items-center gap-3 flex-wrap;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.av-col-4 {
|
|
298
|
+
@apply grid gap-4 sm:grid-cols-2 lg:grid-cols-4;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.av-list {
|
|
302
|
+
@apply space-y-2 text-sm text-slate-300;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.av-list > li {
|
|
306
|
+
@apply flex items-start gap-2;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.av-muted-link {
|
|
310
|
+
@apply text-slate-400 hover:text-slate-200 underline decoration-slate-700/60 hover:decoration-slate-400/60 underline-offset-4 transition-colors;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.av-quote {
|
|
314
|
+
@apply my-4 rounded-2xl border border-slate-800/70 bg-slate-950/60 p-4 text-sm italic text-slate-300;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.av-search {
|
|
318
|
+
@apply w-full rounded-2xl border border-slate-800/70 bg-slate-950/60 px-4 py-3 shadow-xl backdrop-blur-xl;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.av-steps--compact .av-steps-list {
|
|
322
|
+
@apply gap-3;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/* About / Founder --------------------------------------- */
|
|
326
|
+
|
|
327
|
+
.av-founder-layout {
|
|
328
|
+
@apply mt-6 grid gap-6 lg:grid-cols-[220px_1fr] items-start;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.av-founder-photo-wrap {
|
|
332
|
+
@apply rounded-2xl border border-slate-800/70 bg-slate-950/60 p-3 shadow-xl backdrop-blur-xl;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.av-founder-photo {
|
|
336
|
+
@apply w-full h-auto rounded-xl object-cover;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.av-founder-copy {
|
|
340
|
+
@apply text-sm text-slate-300 space-y-4;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
275
345
|
.av-hero {
|
|
276
346
|
@apply py-16 md:py-24;
|
|
277
347
|
}
|
|
@@ -320,6 +390,49 @@
|
|
|
320
390
|
@apply grid gap-5 md:gap-6 md:grid-cols-3;
|
|
321
391
|
}
|
|
322
392
|
|
|
393
|
+
/* Pricing ------------------------------------------------ */
|
|
394
|
+
|
|
395
|
+
.av-pricing-grid {
|
|
396
|
+
@apply grid gap-5 md:gap-6 lg:grid-cols-3 items-stretch;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.av-pricing-grid .av-card {
|
|
400
|
+
@apply h-full;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.av-pricing-table-wrapper {
|
|
404
|
+
@apply mt-6 overflow-x-auto rounded-2xl border border-slate-800/70 bg-slate-950/60 shadow-xl backdrop-blur-xl;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.av-pricing-table {
|
|
408
|
+
@apply w-full min-w-[860px] border-collapse text-left text-sm text-slate-300;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.av-pricing-table thead {
|
|
412
|
+
@apply text-xs uppercase tracking-[0.12em] text-slate-500;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.av-pricing-table thead tr {
|
|
416
|
+
@apply border-b border-slate-800;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.av-pricing-table th,
|
|
420
|
+
.av-pricing-table td {
|
|
421
|
+
@apply px-4 py-3 align-top;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.av-pricing-table tbody tr {
|
|
425
|
+
@apply border-b border-slate-900/80;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.av-pricing-table tbody tr:hover {
|
|
429
|
+
@apply bg-slate-900/50;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.av-pricing-chip {
|
|
433
|
+
@apply inline-flex items-center rounded-full border border-slate-700/70 bg-slate-900/80 px-2.5 py-0.5 text-[0.7rem] text-slate-200;
|
|
434
|
+
}
|
|
435
|
+
|
|
323
436
|
/* Steps / Timeline-ish --------------------------------- */
|
|
324
437
|
|
|
325
438
|
.av-card-heading {
|
|
@@ -457,6 +570,12 @@
|
|
|
457
570
|
|
|
458
571
|
/* Forms ------------------------------------------------- */
|
|
459
572
|
|
|
573
|
+
.av-text-error {
|
|
574
|
+
@apply text-xs text-rose-300;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
460
579
|
.av-form-group {
|
|
461
580
|
@apply space-y-1.5;
|
|
462
581
|
}
|
|
@@ -716,6 +835,64 @@
|
|
|
716
835
|
@apply grid gap-3 sm:grid-cols-2;
|
|
717
836
|
}
|
|
718
837
|
|
|
838
|
+
.av-auth-brand {
|
|
839
|
+
@apply inline-flex;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.av-auth-brand--center {
|
|
843
|
+
@apply justify-center;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.av-auth-back__button-row {
|
|
847
|
+
@apply flex items-center justify-center gap-2 flex-wrap;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
/* Signout page ------------------------------------------ */
|
|
851
|
+
|
|
852
|
+
.av-auth-signout {
|
|
853
|
+
@apply max-w-md w-full mx-auto;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.av-auth-signout__card {
|
|
857
|
+
@apply p-6 md:p-7;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.av-auth-signout__badge {
|
|
861
|
+
@apply inline-flex items-center justify-center gap-2 rounded-full border border-slate-700/70 bg-slate-900/70 px-3 py-1 text-[0.75rem] text-slate-200;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.av-auth-signout__heading {
|
|
865
|
+
@apply text-lg font-semibold text-slate-100;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.av-auth-signout__copy {
|
|
869
|
+
@apply text-sm text-slate-400;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.av-auth-signout__status-grid {
|
|
873
|
+
@apply mt-3 grid gap-3;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.av-auth-signout__status-card {
|
|
877
|
+
@apply rounded-2xl border border-slate-800/70 bg-slate-950/60 p-3.5 flex items-start gap-3;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.av-auth-signout__status-indicator {
|
|
881
|
+
@apply mt-1 h-2 w-2 rounded-full bg-emerald-400/80 flex-none;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.av-auth-signout__status-title {
|
|
885
|
+
@apply block text-sm font-semibold text-slate-200;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.av-auth-signout__status-description {
|
|
889
|
+
@apply block text-xs text-slate-400;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.av-auth-signout__footer {
|
|
893
|
+
@apply mt-4 text-xs text-slate-500 text-center;
|
|
894
|
+
}
|
|
895
|
+
|
|
719
896
|
/* Footer ----------------------------------------------- */
|
|
720
897
|
|
|
721
898
|
.av-footer {
|