-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
1239 lines (1239 loc) · 40.2 KB
/
Copy pathregistry.json
File metadata and controls
1239 lines (1239 loc) · 40.2 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "uniqueui",
"homepage": "https://uniqueui-platform.vercel.app",
"items": [
{
"name": "moving-border",
"type": "registry:ui",
"title": "Moving Border",
"description": "SVG-path-tracing animated border that orbits a button or card.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/moving-border.tsx",
"type": "registry:component",
"target": "components/ui/moving-border.tsx"
}
],
"tailwind": {
"config": {
"theme": {
"extend": {
"animation": {
"border-spin": "border-spin 3s linear infinite"
},
"keyframes": {
"border-spin": {
"100%": {
"transform": "rotate(-360deg)"
}
}
}
}
}
}
}
},
{
"name": "typewriter-text",
"type": "registry:ui",
"title": "Typewriter Text",
"description": "Character-by-character typing with blinking cursor, configurable speed, and delete-retype loop.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/typewriter-text.tsx",
"type": "registry:component",
"target": "components/ui/typewriter-text.tsx"
}
]
},
{
"name": "3d-tilt-card",
"type": "registry:ui",
"title": "3D Tilt Card",
"description": "Perspective-shifting card that tilts toward the cursor with parallax layers and glare overlay.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/3d-tilt-card.tsx",
"type": "registry:component",
"target": "components/ui/3d-tilt-card.tsx"
}
]
},
{
"name": "spotlight-card",
"type": "registry:ui",
"title": "Spotlight Card",
"description": "Card with a radial spotlight that follows the mouse cursor across its surface.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/spotlight-card.tsx",
"type": "registry:component",
"target": "components/ui/spotlight-card.tsx"
}
]
},
{
"name": "aurora-background",
"type": "registry:ui",
"title": "Aurora Background",
"description": "A fully customizable, smooth aurora light background mimicking the northern lights. Configurable via exact hex props alongside automatic integration with the current light or dark mode theme. Accessibility: Respects prefers-reduced-motion (drifting pauses smoothly).",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/aurora-background.tsx",
"type": "registry:component",
"target": "components/ui/aurora-background.tsx"
}
]
},
{
"name": "animated-tabs",
"type": "registry:ui",
"title": "Animated Tabs",
"description": "Tab bar with a sliding pill that morphs between active tabs using layout animation.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/animated-tabs.tsx",
"type": "registry:component",
"target": "components/ui/animated-tabs.tsx"
}
]
},
{
"name": "magnetic-button",
"type": "registry:ui",
"title": "Magnetic Button",
"description": "Button that stretches toward the cursor when nearby and snaps back with spring physics.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/magnetic-button.tsx",
"type": "registry:component",
"target": "components/ui/magnetic-button.tsx"
}
]
},
{
"name": "infinite-marquee",
"type": "registry:ui",
"title": "Infinite Marquee",
"description": "Seamless infinite-scrolling ticker with pause-on-hover and variable speed.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/infinite-marquee.tsx",
"type": "registry:component",
"target": "components/ui/infinite-marquee.tsx"
}
]
},
{
"name": "scroll-reveal",
"type": "registry:ui",
"title": "Scroll Reveal",
"description": "Elements animate into view when they enter the viewport, with 6 animation presets.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/scroll-reveal.tsx",
"type": "registry:component",
"target": "components/ui/scroll-reveal.tsx"
}
]
},
{
"name": "skeleton-shimmer",
"type": "registry:ui",
"title": "Skeleton Shimmer",
"description": "Skeleton loading placeholders with animated shimmer gradient sweep and pulse fade.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/skeleton-shimmer.tsx",
"type": "registry:component",
"target": "components/ui/skeleton-shimmer.tsx"
}
]
},
{
"name": "morphing-modal",
"type": "registry:ui",
"title": "Morphing Modal",
"description": "Modal that expands from the trigger element with spring physics and backdrop blur.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/morphing-modal.tsx",
"type": "registry:component",
"target": "components/ui/morphing-modal.tsx"
}
]
},
{
"name": "animated-glowing-text-outline",
"type": "registry:ui",
"title": "Animated Glowing Text",
"description": "Animated SVG drawing trace outline over shimmering text characters.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/animated-glowing-text-outline.tsx",
"type": "registry:component",
"target": "components/ui/animated-glowing-text-outline.tsx"
}
]
},
{
"name": "gradient-text-reveal",
"type": "registry:ui",
"title": "Gradient Text Reveal",
"description": "Word-by-word text reveal with gradient coloring and blur-to-clear spring animation.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/gradient-text-reveal.tsx",
"type": "registry:component",
"target": "components/ui/gradient-text-reveal.tsx"
}
]
},
{
"name": "scramble-text",
"type": "registry:ui",
"title": "Scramble Text",
"description": "Matrix-style text scramble effect that resolves characters left-to-right.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/scramble-text.tsx",
"type": "registry:component",
"target": "components/ui/scramble-text.tsx"
}
]
},
{
"name": "meteors-card",
"type": "registry:ui",
"title": "Meteors Card",
"description": "Card with animated meteor/shooting star particles falling through the background.",
"dependencies": [
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/meteors-card.tsx",
"type": "registry:component",
"target": "components/ui/meteors-card.tsx"
}
],
"tailwind": {
"config": {
"theme": {
"extend": {
"animation": {
"meteor": "meteor 5s linear infinite"
},
"keyframes": {
"meteor": {
"0%": {
"transform": "rotate(215deg) translateX(0)",
"opacity": "1"
},
"70%": {
"opacity": "1"
},
"100%": {
"transform": "rotate(215deg) translateX(-500px)",
"opacity": "0"
}
}
}
}
}
}
}
},
{
"name": "mini-mac-keyboard",
"type": "registry:ui",
"title": "Mini Mac Keyboard",
"description": "Pure CSS decorative compact Mac-style keyboard with subtle spring entrance from motion.dev — ideal for hero device mockups.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/mini-mac-keyboard.tsx",
"type": "registry:component",
"target": "components/ui/mini-mac-keyboard.tsx"
}
]
},
{
"name": "flip-card",
"type": "registry:ui",
"title": "Flip Card",
"description": "3D card flip with spring physics, supporting hover or click triggers.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/flip-card.tsx",
"type": "registry:component",
"target": "components/ui/flip-card.tsx"
}
]
},
{
"name": "dot-grid-background",
"type": "registry:ui",
"title": "Dot Grid Background",
"description": "Interactive dot-grid pattern with a glowing cursor-following effect.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/dot-grid-background.tsx",
"type": "registry:component",
"target": "components/ui/dot-grid-background.tsx"
}
]
},
{
"name": "floating-dock",
"type": "registry:ui",
"title": "Floating Dock",
"description": "macOS-style dock with magnetic scaling, spring physics, and tooltips.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/floating-dock.tsx",
"type": "registry:component",
"target": "components/ui/floating-dock.tsx"
}
]
},
{
"name": "confetti-burst",
"type": "registry:ui",
"title": "Confetti Burst",
"description": "Click-triggered confetti particle explosion with customizable colors and physics.",
"dependencies": [
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/confetti-burst.tsx",
"type": "registry:component",
"target": "components/ui/confetti-burst.tsx"
}
]
},
{
"name": "drawer-slide",
"type": "registry:ui",
"title": "Drawer Slide",
"description": "Slide-out drawer panel with drag-to-dismiss, spring physics, and backdrop blur. Portals above page chrome by default.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/drawer-slide.tsx",
"type": "registry:component",
"target": "components/ui/drawer-slide.tsx"
}
]
},
{
"name": "notification-stack",
"type": "registry:ui",
"title": "Notification Stack",
"description": "Stacked toast notifications with auto-dismiss progress, sliding animations, and multiple types. Renders through a portal above page chrome by default.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/notification-stack.tsx",
"type": "registry:component",
"target": "components/ui/notification-stack.tsx"
}
]
},
{
"name": "animated-timeline",
"type": "registry:ui",
"title": "Animated Timeline",
"description": "Scroll-triggered timeline with 4 distinct Motion.dev animation variants: vertical spring, horizontal growing line, alternating cards, and numbered steps.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/animated-timeline.tsx",
"type": "registry:component",
"target": "components/ui/animated-timeline.tsx"
}
]
},
{
"name": "nested-comments",
"type": "registry:ui",
"title": "Nested Comments",
"description": "Threaded comment section with infinite nesting, animated expand/collapse, inline reply composer, and spring-physics like button.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/nested-comments.tsx",
"type": "registry:component",
"target": "components/ui/nested-comments.tsx"
}
]
},
{
"name": "hover-reveal-card",
"type": "registry:ui",
"title": "Hover Reveal Card",
"description": "Card that displays an image with teaser content, then slides up a full details panel on hover with staggered Motion.dev animations.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/hover-reveal-card.tsx",
"type": "registry:component",
"target": "components/ui/hover-reveal-card.tsx"
}
]
},
{
"name": "bento-grid",
"type": "registry:ui",
"title": "Bento Grid",
"description": "Responsive masonry-style grid with staggered scroll-reveal, pointer-follow spotlight, hover lift and shadows, optional spin borders, and spring micro-interactions per cell.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/bento-grid.tsx",
"type": "registry:component",
"target": "components/ui/bento-grid.tsx"
}
]
},
{
"name": "horizontal-scroll-gallery",
"type": "registry:ui",
"title": "Horizontal Scroll Gallery",
"description": "Converts vertical scroll into horizontal movement with momentum physics for immersive galleries.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/horizontal-scroll-gallery.tsx",
"type": "registry:component",
"target": "components/ui/horizontal-scroll-gallery.tsx"
}
]
},
{
"name": "particle-field",
"type": "registry:ui",
"title": "Particle Field",
"description": "Canvas-based floating particles with mouse-repulsion physics and responsive connecting lines.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/particle-field.tsx",
"type": "registry:component",
"target": "components/ui/particle-field.tsx"
}
]
},
{
"name": "interactive-cursor",
"type": "registry:ui",
"title": "Interactive Cursor",
"description": "Spring-smoothed cursor overlay with magnetic hover states, click ripples, optional particles, and support for full-page or container-scoped interactions.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/interactive-cursor.tsx",
"type": "registry:component",
"target": "components/ui/interactive-cursor.tsx"
}
]
},
{
"name": "radial-menu",
"type": "registry:ui",
"title": "Radial Menu",
"description": "Circular flyout menu that bursts items outward from a center trigger with staggered spring animation.",
"dependencies": [
"motion",
"lucide-react",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/radial-menu.tsx",
"type": "registry:component",
"target": "components/ui/radial-menu.tsx"
}
]
},
{
"name": "cursor-trail",
"type": "registry:ui",
"title": "Cursor Trail",
"description": "Glowing trail that follows the cursor with decay physics, like a sparkler or comet tail.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/cursor-trail.tsx",
"type": "registry:component",
"target": "components/ui/cursor-trail.tsx"
}
]
},
{
"name": "pen-cursor",
"type": "registry:ui",
"title": "Pen Cursor",
"description": "Physics-driven ribbon trail rendered on canvas — a chain of linked points follows the mouse with spring-damping inertia, width scales with speed, and colors interpolate head-to-tail. Inspired by obsidianassembly.com.",
"dependencies": [
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/pen-cursor.tsx",
"type": "registry:component",
"target": "components/ui/pen-cursor.tsx"
}
]
},
{
"name": "glow-hero-section",
"type": "registry:ui",
"title": "Glow Hero Section",
"description": "Physics-driven hero section with an interactive aqueous mesh canvas, spring-based motion text entrance, and fully configurable badge, heading, description, colors, and dimensions.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/glow-hero-section.tsx",
"type": "registry:component",
"target": "components/ui/glow-hero-section.tsx"
}
]
},
{
"name": "morphing-card-stack",
"type": "registry:ui",
"title": "Morphing Card Stack",
"description": "An interactive collection of cards that smoothly layout-morphs between Stack, Grid, and List configurations using Framer Motion springs.",
"dependencies": [
"motion",
"lucide-react",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/morphing-card-stack.tsx",
"type": "registry:component",
"target": "components/ui/morphing-card-stack.tsx"
}
]
},
{
"name": "limelight-nav",
"type": "registry:ui",
"title": "Limelight Nav",
"description": "Adaptive fluid navigation bar with a limelight spotlight and spring-animated tabs.",
"dependencies": [
"motion",
"lucide-react",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/limelight-nav.tsx",
"type": "registry:component",
"target": "components/ui/limelight-nav.tsx"
}
]
},
{
"name": "data-table",
"type": "registry:ui",
"title": "Data Table",
"description": "Typed, zero-dependency data grid that auto-switches between a hand-rolled virtualized engine (10 to 100,000 rows) and a standard engine with row grouping and rowspan. Search, single and multi sort, multi-select, row expansion, frozen columns, column groups, pinned rows, and feature presets.",
"dependencies": [
"lucide-react",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/data-table.tsx",
"type": "registry:component",
"target": "components/ui/data-table.tsx"
}
]
},
{
"name": "multi-step-auth-card",
"type": "registry:ui",
"title": "Multi-Step Auth Card",
"description": "Animation-first enterprise auth flow: email discovery, first-time and returning user paths, password create/login, and OTP verification with spring transitions between steps.",
"dependencies": [
"motion",
"lucide-react",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/multi-step-auth-card.tsx",
"type": "registry:component",
"target": "components/ui/multi-step-auth-card.tsx"
}
]
},
{
"name": "shiny-text",
"type": "registry:ui",
"title": "Shiny Text",
"description": "A shimmering highlight that continuously sweeps across text — perfect for hero taglines and call-to-action copy.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/shiny-text.tsx",
"type": "registry:component",
"target": "components/ui/shiny-text.tsx"
}
]
},
{
"name": "outlined-mega-mark",
"type": "registry:ui",
"title": "Outlined Mega Mark",
"description": "Full-width mega outlined headline with theme-aware stroke colours; optional hover swaps the outline for an SVG gradient stroke (hollow fill).",
"dependencies": [
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/outlined-mega-mark.tsx",
"type": "registry:component",
"target": "components/ui/outlined-mega-mark.tsx"
}
]
},
{
"name": "blur-reveal",
"type": "registry:ui",
"title": "Blur Reveal",
"description": "Characters or words materialise from a soft blur — the cinematic text entrance used in top SaaS hero sections.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/blur-reveal.tsx",
"type": "registry:component",
"target": "components/ui/blur-reveal.tsx"
}
]
},
{
"name": "count-up",
"type": "registry:ui",
"title": "Count Up",
"description": "An animated number that counts from a starting value to a target when scrolled into view — essential for metrics and stats sections.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/count-up.tsx",
"type": "registry:component",
"target": "components/ui/count-up.tsx"
}
]
},
{
"name": "border-beam",
"type": "registry:ui",
"title": "Border Beam",
"description": "A glowing comet that continuously orbits the border of a container — instantly upgrades cards, code blocks, and feature sections.",
"dependencies": [
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/border-beam.tsx",
"type": "registry:component",
"target": "components/ui/border-beam.tsx"
}
]
},
{
"name": "ripple",
"type": "registry:ui",
"title": "Ripple",
"description": "Luminous orbs that drift slowly across the viewport — a liquid nebula hero background with warm, organic colour blooms.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/ripple.tsx",
"type": "registry:component",
"target": "components/ui/ripple.tsx"
}
]
},
{
"name": "word-rotate",
"type": "registry:ui",
"title": "Word Rotate",
"description": "A list of words that cycle with slide, flip, or fade transitions — the signature hero-headline effect used across modern SaaS sites.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/word-rotate.tsx",
"type": "registry:component",
"target": "components/ui/word-rotate.tsx"
}
]
},
{
"name": "shooting-stars-grid",
"type": "registry:ui",
"title": "ShootingStarsGrid",
"description": "A cinematic hero-section background: a faint grid bathed in dark-emerald glow, with thin white streaks that race along grid lanes like falling stars. Built on Motion.dev with compositor-only transforms for smooth 60fps.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/shooting-stars-grid.tsx",
"type": "registry:component",
"target": "components/ui/shooting-stars-grid.tsx"
}
]
},
{
"name": "dynamic-info",
"type": "registry:ui",
"title": "DynamicInfo",
"description": "An interactive profile pill that shows avatar, name, role, and a live ticking clock. Click to reveal social links and a status indicator. Drop-in floatable via the position prop.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/dynamic-info.tsx",
"type": "registry:component",
"target": "components/ui/dynamic-info.tsx"
}
]
},
{
"name": "macbook-mock",
"type": "registry:ui",
"title": "Macbook Mock",
"description": "Faux MacBook frame with a hover-driven lid open and a fade-or-flap screen reveal. Hover to lift the lid; the idle screen crossfades or folds back to expose your image or React node.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/macbook-mock.tsx",
"type": "registry:component",
"target": "components/ui/macbook-mock.tsx"
}
]
},
{
"name": "liquid-glass-panel",
"type": "registry:ui",
"title": "Liquid Glass Panel",
"description": "A frosted container that physically refracts the content behind it via SVG turbulence + displacement — not a simple backdrop blur. Sub-pixel-crisp text on top, slow specular sheen, Fresnel-like edge highlight, and a hover boost on the displacement strength. Honors prefers-reduced-motion.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/liquid-glass-panel.tsx",
"type": "registry:component",
"target": "components/ui/liquid-glass-panel.tsx"
}
]
},
{
"name": "shader-mesh-gradient",
"type": "registry:ui",
"title": "Shader Mesh Gradient",
"description": "GPU-rendered mesh gradient: a fragment shader warps multiple OKLCH color blobs through 3-octave simplex noise so they flow continuously instead of locking into a static pattern. Pointer position subtly attracts the nearest blob; reduced-motion freezes a single curated frame; falls back to a static CSS radial gradient on devices without WebGL2.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/shader-mesh-gradient.tsx",
"type": "registry:component",
"target": "components/ui/shader-mesh-gradient.tsx"
}
]
},
{
"name": "caustic-light-card",
"type": "registry:ui",
"title": "Caustic Light Card",
"description": "A premium card surface with animated pool-like caustic highlights rendered by a lightweight WebGL2 fragment shader. Caustics are masked to the lower region, brightest near the bottom, with hover-driven boosts to intensity and speed. Off-screen cards pause automatically and only four visible cards animate at once.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/caustic-light-card.tsx",
"type": "registry:component",
"target": "components/ui/caustic-light-card.tsx"
}
]
},
{
"name": "chromatic-aberration-reveal",
"type": "registry:ui",
"title": "Chromatic Aberration Reveal",
"description": "Reveal an image with an RGB split that converges into a clean final frame. Three channel-shifted layers spring to alignment with subtle staggering, plus a one-pass wave sweep during convergence. Supports in-view once, mount-triggered, and manual visibility control.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/chromatic-aberration-reveal.tsx",
"type": "registry:component",
"target": "components/ui/chromatic-aberration-reveal.tsx"
}
]
},
{
"name": "iridescent-foil-button",
"type": "registry:ui",
"title": "Iridescent Foil Button",
"description": "A holographic foil CTA button with pointer-reactive hue/angle shifts, soft specular sheen, and fine grain texture. Built as a drop-in button with proper focus states, disabled support, and reduced-motion-safe scale behavior.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/iridescent-foil-button.tsx",
"type": "registry:component",
"target": "components/ui/iridescent-foil-button.tsx"
}
]
},
{
"name": "kinetic-variable-headline",
"type": "registry:ui",
"title": "Kinetic Variable Headline",
"description": "A large display headline that animates variable font weight per glyph on entrance and pointer proximity. Letters inflate like a magnetic field while preserving readable text semantics.",
"dependencies": [
"motion",
"clsx",
"tailwind-merge"
],
"files": [
{
"path": "components/ui/kinetic-variable-headline.tsx",
"type": "registry:component",
"target": "components/ui/kinetic-variable-headline.tsx"
}