@ansiversa/components 0.0.26 → 0.0.28

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -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,52 @@
320
390
  @apply grid gap-5 md:gap-6 md:grid-cols-3;
321
391
  }
322
392
 
393
+ .av-section-grid--2 {
394
+ @apply md:grid-cols-2;
395
+ }
396
+ /* Pricing ------------------------------------------------ */
397
+
398
+ .av-pricing-grid {
399
+ @apply grid gap-5 md:gap-6 lg:grid-cols-3 items-stretch;
400
+ }
401
+
402
+ .av-pricing-grid .av-card {
403
+ @apply h-full;
404
+ }
405
+
406
+ .av-pricing-table-wrapper {
407
+ @apply mt-6 overflow-x-auto rounded-2xl border border-slate-800/70 bg-slate-950/60 shadow-xl backdrop-blur-xl;
408
+ }
409
+
410
+ .av-pricing-table {
411
+ @apply w-full min-w-[860px] border-collapse text-left text-sm text-slate-300;
412
+ }
413
+
414
+ .av-pricing-table thead {
415
+ @apply text-xs uppercase tracking-[0.12em] text-slate-500;
416
+ }
417
+
418
+ .av-pricing-table thead tr {
419
+ @apply border-b border-slate-800;
420
+ }
421
+
422
+ .av-pricing-table th,
423
+ .av-pricing-table td {
424
+ @apply px-4 py-3 align-top;
425
+ }
426
+
427
+ .av-pricing-table tbody tr {
428
+ @apply border-b border-slate-900/80;
429
+ }
430
+
431
+ .av-pricing-table tbody tr:hover {
432
+ @apply bg-slate-900/50;
433
+ }
434
+
435
+ .av-pricing-chip {
436
+ @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;
437
+ }
438
+
323
439
  /* Steps / Timeline-ish --------------------------------- */
324
440
 
325
441
  .av-card-heading {
@@ -457,6 +573,12 @@
457
573
 
458
574
  /* Forms ------------------------------------------------- */
459
575
 
576
+ .av-text-error {
577
+ @apply text-xs text-rose-300;
578
+ }
579
+
580
+
581
+
460
582
  .av-form-group {
461
583
  @apply space-y-1.5;
462
584
  }
@@ -716,6 +838,64 @@
716
838
  @apply grid gap-3 sm:grid-cols-2;
717
839
  }
718
840
 
841
+ .av-auth-brand {
842
+ @apply inline-flex;
843
+ }
844
+
845
+ .av-auth-brand--center {
846
+ @apply justify-center;
847
+ }
848
+
849
+ .av-auth-back__button-row {
850
+ @apply flex items-center justify-center gap-2 flex-wrap;
851
+ }
852
+
853
+ /* Signout page ------------------------------------------ */
854
+
855
+ .av-auth-signout {
856
+ @apply max-w-md w-full mx-auto;
857
+ }
858
+
859
+ .av-auth-signout__card {
860
+ @apply p-6 md:p-7;
861
+ }
862
+
863
+ .av-auth-signout__badge {
864
+ @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;
865
+ }
866
+
867
+ .av-auth-signout__heading {
868
+ @apply text-lg font-semibold text-slate-100;
869
+ }
870
+
871
+ .av-auth-signout__copy {
872
+ @apply text-sm text-slate-400;
873
+ }
874
+
875
+ .av-auth-signout__status-grid {
876
+ @apply mt-3 grid gap-3;
877
+ }
878
+
879
+ .av-auth-signout__status-card {
880
+ @apply rounded-2xl border border-slate-800/70 bg-slate-950/60 p-3.5 flex items-start gap-3;
881
+ }
882
+
883
+ .av-auth-signout__status-indicator {
884
+ @apply mt-1 h-2 w-2 rounded-full bg-emerald-400/80 flex-none;
885
+ }
886
+
887
+ .av-auth-signout__status-title {
888
+ @apply block text-sm font-semibold text-slate-200;
889
+ }
890
+
891
+ .av-auth-signout__status-description {
892
+ @apply block text-xs text-slate-400;
893
+ }
894
+
895
+ .av-auth-signout__footer {
896
+ @apply mt-4 text-xs text-slate-500 text-center;
897
+ }
898
+
719
899
  /* Footer ----------------------------------------------- */
720
900
 
721
901
  .av-footer {