@oalacea/chaosui 0.1.0 → 0.5.0

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.
Files changed (139) hide show
  1. package/bin/cli.js +105 -13
  2. package/components/backgrounds/glow-orbs/index.tsx +1 -1
  3. package/components/buttons/chaos-button/chaos-button.module.css +3 -2
  4. package/components/buttons/cta-brutal/cta-brutal.module.css +81 -0
  5. package/components/buttons/cta-brutal/index.tsx +56 -0
  6. package/components/buttons/dead-button/dead-button.module.css +111 -0
  7. package/components/buttons/dead-button/index.tsx +47 -0
  8. package/components/buttons/deeper-button/deeper-button.module.css +76 -0
  9. package/components/buttons/deeper-button/index.tsx +51 -0
  10. package/components/buttons/dual-choice/dual-choice.module.css +90 -0
  11. package/components/buttons/dual-choice/index.tsx +54 -0
  12. package/components/buttons/glitch-button/glitch-button.module.css +7 -7
  13. package/components/buttons/tension-bar/index.tsx +79 -0
  14. package/components/buttons/tension-bar/tension-bar.module.css +105 -0
  15. package/components/chaos-vars.css +27 -0
  16. package/components/cyber/cyber-avatar/css/cyber-avatar.module.css +60 -0
  17. package/components/cyber/cyber-avatar/css/index.tsx +28 -0
  18. package/components/cyber/cyber-avatar/tailwind/index.tsx +46 -0
  19. package/components/cyber/cyber-input/css/cyber-input.module.css +87 -0
  20. package/components/cyber/cyber-input/css/index.tsx +49 -0
  21. package/components/cyber/cyber-input/tailwind/index.tsx +55 -0
  22. package/components/cyber/cyber-loader/css/cyber-loader.module.css +102 -0
  23. package/components/cyber/cyber-loader/css/index.tsx +58 -0
  24. package/components/cyber/cyber-loader/tailwind/index.tsx +63 -0
  25. package/components/cyber/cyber-modal/css/cyber-modal.module.css +124 -0
  26. package/components/cyber/cyber-modal/css/index.tsx +75 -0
  27. package/components/cyber/cyber-modal/tailwind/index.tsx +87 -0
  28. package/components/cyber/cyber-slider/css/cyber-slider.module.css +61 -0
  29. package/components/cyber/cyber-slider/css/index.tsx +41 -0
  30. package/components/cyber/cyber-slider/tailwind/index.tsx +51 -0
  31. package/components/cyber/cyber-tooltip/css/cyber-tooltip.module.css +67 -0
  32. package/components/cyber/cyber-tooltip/css/index.tsx +36 -0
  33. package/components/cyber/cyber-tooltip/tailwind/index.tsx +48 -0
  34. package/components/decorative/coffee-stain/coffee-stain.module.css +24 -0
  35. package/components/decorative/coffee-stain/index.tsx +55 -0
  36. package/components/decorative/ornaments/index.tsx +51 -0
  37. package/components/decorative/ornaments/ornaments.module.css +33 -0
  38. package/components/decorative/rune-symbols/index.tsx +55 -0
  39. package/components/decorative/rune-symbols/rune-symbols.module.css +22 -0
  40. package/components/effects/glitch-image/css/glitch-image.module.css +64 -0
  41. package/components/effects/glitch-image/css/index.tsx +25 -0
  42. package/components/effects/glitch-image/tailwind/index.tsx +49 -0
  43. package/components/effects/glowing-border/css/glowing-border.module.css +73 -0
  44. package/components/effects/glowing-border/css/index.tsx +45 -0
  45. package/components/effects/glowing-border/tailwind/index.tsx +40 -0
  46. package/components/effects/screen-distortion/screen-distortion.module.css +2 -2
  47. package/components/effects/warning-tape/index.tsx +4 -4
  48. package/components/effects/warning-tape/warning-tape.module.css +2 -0
  49. package/components/layout/data-grid/css/data-grid.module.css +52 -0
  50. package/components/layout/data-grid/css/index.tsx +76 -0
  51. package/components/layout/data-grid/tailwind/index.tsx +74 -0
  52. package/components/layout/hologram-card/css/hologram-card.module.css +102 -0
  53. package/components/layout/hologram-card/css/index.tsx +46 -0
  54. package/components/layout/hologram-card/tailwind/index.tsx +61 -0
  55. package/components/layout/horizontal-scroll/horizontal-scroll.module.css +30 -0
  56. package/components/layout/horizontal-scroll/index.tsx +78 -0
  57. package/components/layout/spec-grid/index.tsx +56 -0
  58. package/components/layout/spec-grid/spec-grid.module.css +21 -0
  59. package/components/layout/tower-pricing/index.tsx +56 -0
  60. package/components/layout/tower-pricing/tower-pricing.module.css +27 -0
  61. package/components/layout/tracklist/index.tsx +45 -0
  62. package/components/layout/tracklist/tracklist.module.css +24 -0
  63. package/components/layout/void-frame/index.tsx +32 -0
  64. package/components/layout/void-frame/void-frame.module.css +38 -0
  65. package/components/navigation/brutal-nav/brutal-nav.module.css +85 -0
  66. package/components/navigation/brutal-nav/index.tsx +71 -0
  67. package/components/navigation/hexagon-menu/css/hexagon-menu.module.css +55 -0
  68. package/components/navigation/hexagon-menu/css/index.tsx +35 -0
  69. package/components/navigation/hexagon-menu/tailwind/index.tsx +53 -0
  70. package/components/navigation/progress-dots/index.tsx +55 -0
  71. package/components/navigation/progress-dots/progress-dots.module.css +91 -0
  72. package/components/navigation/scattered-nav/index.tsx +59 -0
  73. package/components/navigation/scattered-nav/scattered-nav.module.css +113 -0
  74. package/components/navigation/scroll-indicator/index.tsx +58 -0
  75. package/components/navigation/scroll-indicator/scroll-indicator.module.css +82 -0
  76. package/components/navigation/vertical-nav/index.tsx +59 -0
  77. package/components/navigation/vertical-nav/vertical-nav.module.css +98 -0
  78. package/components/neon/neon-alert/css/index.tsx +53 -0
  79. package/components/neon/neon-alert/css/neon-alert.module.css +60 -0
  80. package/components/neon/neon-alert/tailwind/index.tsx +59 -0
  81. package/components/neon/neon-badge/css/index.tsx +49 -0
  82. package/components/neon/neon-badge/css/neon-badge.module.css +53 -0
  83. package/components/neon/neon-badge/tailwind/index.tsx +50 -0
  84. package/components/neon/neon-button/css/index.tsx +54 -0
  85. package/components/neon/neon-button/css/neon-button.module.css +114 -0
  86. package/components/neon/neon-button/tailwind/index.tsx +51 -0
  87. package/components/neon/neon-divider/css/index.tsx +26 -0
  88. package/components/neon/neon-divider/css/neon-divider.module.css +43 -0
  89. package/components/neon/neon-divider/tailwind/index.tsx +36 -0
  90. package/components/neon/neon-progress/css/index.tsx +65 -0
  91. package/components/neon/neon-progress/css/neon-progress.module.css +88 -0
  92. package/components/neon/neon-progress/tailwind/index.tsx +46 -0
  93. package/components/neon/neon-tabs/css/index.tsx +41 -0
  94. package/components/neon/neon-tabs/css/neon-tabs.module.css +45 -0
  95. package/components/neon/neon-tabs/tailwind/index.tsx +53 -0
  96. package/components/neon/neon-toggle/css/index.tsx +58 -0
  97. package/components/neon/neon-toggle/css/neon-toggle.module.css +79 -0
  98. package/components/neon/neon-toggle/tailwind/index.tsx +57 -0
  99. package/components/text/ascii-art/css/ascii-art.module.css +173 -0
  100. package/components/text/ascii-art/css/index.tsx +116 -0
  101. package/components/text/ascii-art/tailwind/index.tsx +124 -0
  102. package/components/text/blood-drip/css/blood-drip.module.css +142 -0
  103. package/components/text/blood-drip/css/index.tsx +113 -0
  104. package/components/text/blood-drip/tailwind/index.tsx +133 -0
  105. package/components/text/char-glitch/css/char-glitch.module.css +124 -0
  106. package/components/text/char-glitch/css/index.tsx +153 -0
  107. package/components/text/char-glitch/tailwind/index.tsx +126 -0
  108. package/components/text/countdown-display/css/countdown-display.module.css +179 -0
  109. package/components/text/countdown-display/css/index.tsx +190 -0
  110. package/components/text/countdown-display/tailwind/index.tsx +155 -0
  111. package/components/text/giant-layers/css/giant-layers.module.css +156 -0
  112. package/components/text/giant-layers/css/index.tsx +97 -0
  113. package/components/text/giant-layers/tailwind/index.tsx +111 -0
  114. package/components/text/glitch-text/glitch-text.module.css +2 -2
  115. package/components/text/reveal-text/css/index.tsx +180 -0
  116. package/components/text/reveal-text/css/reveal-text.module.css +129 -0
  117. package/components/text/reveal-text/tailwind/index.tsx +135 -0
  118. package/components/text/rotate-text/css/index.tsx +139 -0
  119. package/components/text/rotate-text/css/rotate-text.module.css +162 -0
  120. package/components/text/rotate-text/tailwind/index.tsx +127 -0
  121. package/components/text/strike-reveal/css/index.tsx +124 -0
  122. package/components/text/strike-reveal/css/strike-reveal.module.css +139 -0
  123. package/components/text/strike-reveal/tailwind/index.tsx +138 -0
  124. package/components/text/terminal-output/css/index.tsx +179 -0
  125. package/components/text/terminal-output/css/terminal-output.module.css +203 -0
  126. package/components/text/terminal-output/tailwind/index.tsx +174 -0
  127. package/components/text/typing-text/css/index.tsx +115 -0
  128. package/components/text/typing-text/css/typing-text.module.css +84 -0
  129. package/components/text/typing-text/tailwind/index.tsx +126 -0
  130. package/package.json +1 -1
  131. package/components/glow-orbs/glow-orbs.module.css +0 -31
  132. package/components/glow-orbs/index.tsx +0 -87
  133. package/components/light-beams/index.tsx +0 -80
  134. package/components/light-beams/light-beams.module.css +0 -27
  135. package/components/noise-canvas/index.tsx +0 -113
  136. package/components/noise-canvas/noise-canvas.module.css +0 -8
  137. package/components/package.json +0 -13
  138. package/components/particle-field/index.tsx +0 -81
  139. package/components/particle-field/particle-field.module.css +0 -31
@@ -0,0 +1,55 @@
1
+ 'use client';
2
+
3
+ import { forwardRef, InputHTMLAttributes } from 'react';
4
+
5
+ export interface CyberInputProps extends InputHTMLAttributes<HTMLInputElement> {
6
+ variant?: 'cyan' | 'pink' | 'green' | 'purple';
7
+ label?: string;
8
+ error?: string;
9
+ }
10
+
11
+ const variantStyles = {
12
+ cyan: 'focus:border-cyan-400 focus:shadow-[0_0_10px_rgba(0,240,255,0.3)]',
13
+ pink: 'focus:border-fuchsia-500 focus:shadow-[0_0_10px_rgba(255,0,255,0.3)]',
14
+ green: 'focus:border-emerald-400 focus:shadow-[0_0_10px_rgba(0,255,136,0.3)]',
15
+ purple: 'focus:border-purple-500 focus:shadow-[0_0_10px_rgba(168,85,247,0.3)]',
16
+ };
17
+
18
+ const labelColors = {
19
+ cyan: 'text-cyan-400',
20
+ pink: 'text-fuchsia-500',
21
+ green: 'text-emerald-400',
22
+ purple: 'text-purple-500',
23
+ };
24
+
25
+ export const CyberInput = forwardRef<HTMLInputElement, CyberInputProps>(
26
+ ({ variant = 'cyan', label, error, className = '', ...props }, ref) => {
27
+ return (
28
+ <div className={`flex flex-col gap-2 ${className}`}>
29
+ {label && (
30
+ <label className={`font-['Rajdhani',sans-serif] text-xs font-semibold uppercase tracking-widest ${labelColors[variant]}`}>
31
+ {label}
32
+ </label>
33
+ )}
34
+ <input
35
+ ref={ref}
36
+ className={`
37
+ w-full px-4 py-3
38
+ font-['Share_Tech_Mono',monospace] text-sm text-white
39
+ bg-black/50 border border-white/10
40
+ outline-none transition-all duration-300
41
+ placeholder:text-white/30
42
+ ${error ? 'border-rose-500 focus:border-rose-500' : variantStyles[variant]}
43
+ `}
44
+ {...props}
45
+ />
46
+ {error && (
47
+ <span className="font-['Share_Tech_Mono',monospace] text-xs text-rose-500">{error}</span>
48
+ )}
49
+ </div>
50
+ );
51
+ }
52
+ );
53
+
54
+ CyberInput.displayName = 'CyberInput';
55
+ export default CyberInput;
@@ -0,0 +1,102 @@
1
+ .loader {
2
+ --loader-color: #00f0ff;
3
+ --loader-size: 2.5rem;
4
+
5
+ display: inline-flex;
6
+ align-items: center;
7
+ justify-content: center;
8
+ }
9
+
10
+ .cyan { --loader-color: #00f0ff; }
11
+ .pink { --loader-color: #ff00ff; }
12
+ .green { --loader-color: #00ff88; }
13
+ .purple { --loader-color: #a855f7; }
14
+
15
+ .sm { --loader-size: 1.5rem; }
16
+ .md { --loader-size: 2.5rem; }
17
+ .lg { --loader-size: 4rem; }
18
+
19
+ /* Spinner */
20
+ .spinner {
21
+ width: var(--loader-size);
22
+ height: var(--loader-size);
23
+ border: 3px solid rgba(255, 255, 255, 0.1);
24
+ border-top-color: var(--loader-color);
25
+ border-radius: 50%;
26
+ animation: spin 1s linear infinite;
27
+ box-shadow: 0 0 10px var(--loader-color);
28
+ }
29
+
30
+ @keyframes spin {
31
+ to { transform: rotate(360deg); }
32
+ }
33
+
34
+ /* Dots */
35
+ .dots {
36
+ gap: 0.5rem;
37
+ }
38
+
39
+ .dot {
40
+ width: calc(var(--loader-size) / 4);
41
+ height: calc(var(--loader-size) / 4);
42
+ background: var(--loader-color);
43
+ border-radius: 50%;
44
+ animation: dot-bounce 1.4s ease-in-out infinite;
45
+ box-shadow: 0 0 10px var(--loader-color);
46
+ }
47
+
48
+ .dot:nth-child(1) { animation-delay: 0s; }
49
+ .dot:nth-child(2) { animation-delay: 0.2s; }
50
+ .dot:nth-child(3) { animation-delay: 0.4s; }
51
+
52
+ @keyframes dot-bounce {
53
+ 0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
54
+ 40% { transform: scale(1); opacity: 1; }
55
+ }
56
+
57
+ /* Bars */
58
+ .bars {
59
+ gap: 0.25rem;
60
+ height: var(--loader-size);
61
+ }
62
+
63
+ .bar {
64
+ width: calc(var(--loader-size) / 6);
65
+ height: 100%;
66
+ background: var(--loader-color);
67
+ animation: bar-stretch 1.2s ease-in-out infinite;
68
+ box-shadow: 0 0 8px var(--loader-color);
69
+ }
70
+
71
+ .bar:nth-child(1) { animation-delay: 0s; }
72
+ .bar:nth-child(2) { animation-delay: 0.1s; }
73
+ .bar:nth-child(3) { animation-delay: 0.2s; }
74
+ .bar:nth-child(4) { animation-delay: 0.3s; }
75
+
76
+ @keyframes bar-stretch {
77
+ 0%, 40%, 100% { transform: scaleY(0.4); }
78
+ 20% { transform: scaleY(1); }
79
+ }
80
+
81
+ /* Pulse */
82
+ .pulse {
83
+ width: var(--loader-size);
84
+ height: var(--loader-size);
85
+ background: var(--loader-color);
86
+ border-radius: 50%;
87
+ animation: pulse-grow 1.5s ease-in-out infinite;
88
+ }
89
+
90
+ @keyframes pulse-grow {
91
+ 0% { transform: scale(0.5); opacity: 1; }
92
+ 100% { transform: scale(1.5); opacity: 0; }
93
+ }
94
+
95
+ /* Hexagon */
96
+ .hexagon {
97
+ width: var(--loader-size);
98
+ height: var(--loader-size);
99
+ clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
100
+ background: conic-gradient(from 0deg, var(--loader-color), transparent);
101
+ animation: spin 1.5s linear infinite;
102
+ }
@@ -0,0 +1,58 @@
1
+ 'use client';
2
+
3
+ import { forwardRef, HTMLAttributes } from 'react';
4
+ import styles from './cyber-loader.module.css';
5
+
6
+ export interface CyberLoaderProps extends HTMLAttributes<HTMLDivElement> {
7
+ /** Loader style */
8
+ variant?: 'spinner' | 'dots' | 'bars' | 'pulse' | 'hexagon';
9
+ /** Neon color */
10
+ color?: 'cyan' | 'pink' | 'green' | 'purple';
11
+ /** Loader size */
12
+ size?: 'sm' | 'md' | 'lg';
13
+ }
14
+
15
+ export const CyberLoader = forwardRef<HTMLDivElement, CyberLoaderProps>(
16
+ (
17
+ {
18
+ variant = 'spinner',
19
+ color = 'cyan',
20
+ size = 'md',
21
+ className,
22
+ ...props
23
+ },
24
+ ref
25
+ ) => {
26
+ const classes = [
27
+ styles.loader,
28
+ styles[variant],
29
+ styles[color],
30
+ styles[size],
31
+ className,
32
+ ].filter(Boolean).join(' ');
33
+
34
+ return (
35
+ <div ref={ref} className={classes} {...props}>
36
+ {variant === 'dots' && (
37
+ <>
38
+ <span className={styles.dot} />
39
+ <span className={styles.dot} />
40
+ <span className={styles.dot} />
41
+ </>
42
+ )}
43
+ {variant === 'bars' && (
44
+ <>
45
+ <span className={styles.bar} />
46
+ <span className={styles.bar} />
47
+ <span className={styles.bar} />
48
+ <span className={styles.bar} />
49
+ </>
50
+ )}
51
+ </div>
52
+ );
53
+ }
54
+ );
55
+
56
+ CyberLoader.displayName = 'CyberLoader';
57
+
58
+ export default CyberLoader;
@@ -0,0 +1,63 @@
1
+ 'use client';
2
+
3
+ import { forwardRef, HTMLAttributes } from 'react';
4
+
5
+ export interface CyberLoaderProps extends HTMLAttributes<HTMLDivElement> {
6
+ variant?: 'spinner' | 'dots' | 'bars';
7
+ color?: 'cyan' | 'pink' | 'green' | 'purple';
8
+ size?: 'sm' | 'md' | 'lg';
9
+ }
10
+
11
+ const colorStyles = {
12
+ cyan: { bg: 'bg-cyan-400', border: 'border-t-cyan-400', shadow: 'shadow-[0_0_10px_#00f0ff]' },
13
+ pink: { bg: 'bg-fuchsia-500', border: 'border-t-fuchsia-500', shadow: 'shadow-[0_0_10px_#ff00ff]' },
14
+ green: { bg: 'bg-emerald-400', border: 'border-t-emerald-400', shadow: 'shadow-[0_0_10px_#00ff88]' },
15
+ purple: { bg: 'bg-purple-500', border: 'border-t-purple-500', shadow: 'shadow-[0_0_10px_#a855f7]' },
16
+ };
17
+
18
+ const sizeStyles = { sm: 'w-6 h-6', md: 'w-10 h-10', lg: 'w-16 h-16' };
19
+
20
+ export const CyberLoader = forwardRef<HTMLDivElement, CyberLoaderProps>(
21
+ ({ variant = 'spinner', color = 'cyan', size = 'md', className = '', ...props }, ref) => {
22
+ const colors = colorStyles[color];
23
+
24
+ if (variant === 'spinner') {
25
+ return (
26
+ <div
27
+ ref={ref}
28
+ className={`${sizeStyles[size]} rounded-full border-[3px] border-white/10 ${colors.border} ${colors.shadow} animate-spin ${className}`}
29
+ {...props}
30
+ />
31
+ );
32
+ }
33
+
34
+ if (variant === 'dots') {
35
+ return (
36
+ <div ref={ref} className={`inline-flex items-center gap-2 ${className}`} {...props}>
37
+ {[0, 1, 2].map((i) => (
38
+ <span
39
+ key={i}
40
+ className={`w-2.5 h-2.5 rounded-full ${colors.bg} ${colors.shadow} animate-[bounce_1.4s_ease-in-out_infinite]`}
41
+ style={{ animationDelay: `${i * 0.2}s` }}
42
+ />
43
+ ))}
44
+ </div>
45
+ );
46
+ }
47
+
48
+ return (
49
+ <div ref={ref} className={`inline-flex items-end gap-1 h-10 ${className}`} {...props}>
50
+ {[0, 1, 2, 3].map((i) => (
51
+ <span
52
+ key={i}
53
+ className={`w-1.5 h-full ${colors.bg} ${colors.shadow} animate-[pulse_1.2s_ease-in-out_infinite]`}
54
+ style={{ animationDelay: `${i * 0.1}s` }}
55
+ />
56
+ ))}
57
+ </div>
58
+ );
59
+ }
60
+ );
61
+
62
+ CyberLoader.displayName = 'CyberLoader';
63
+ export default CyberLoader;
@@ -0,0 +1,124 @@
1
+ .overlay {
2
+ position: fixed;
3
+ inset: 0;
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ padding: 1.25rem;
8
+ background: rgba(0, 0, 0, 0.8);
9
+ backdrop-filter: blur(4px);
10
+ z-index: 1000;
11
+ animation: overlay-fade 0.2s ease-out;
12
+ }
13
+
14
+ @keyframes overlay-fade {
15
+ from { opacity: 0; }
16
+ to { opacity: 1; }
17
+ }
18
+
19
+ .modal {
20
+ --modal-color: #00f0ff;
21
+
22
+ position: relative;
23
+ width: 100%;
24
+ max-height: 90vh;
25
+ background: hsl(var(--background, 0 0% 4%));
26
+ border: 2px solid var(--modal-color);
27
+ box-shadow:
28
+ 0 0 20px var(--modal-color),
29
+ inset 0 0 20px rgba(0, 240, 255, 0.05);
30
+ overflow: hidden;
31
+ animation: modal-appear 0.3s ease-out;
32
+ }
33
+
34
+ @keyframes modal-appear {
35
+ from { opacity: 0; transform: scale(0.9) translateY(-20px); }
36
+ to { opacity: 1; transform: scale(1) translateY(0); }
37
+ }
38
+
39
+ .cyan { --modal-color: #00f0ff; }
40
+ .pink { --modal-color: #ff00ff; }
41
+ .green { --modal-color: #00ff88; }
42
+ .red { --modal-color: #ff0040; }
43
+
44
+ .sm { max-width: 25rem; }
45
+ .md { max-width: 37.5rem; }
46
+ .lg { max-width: 56.25rem; }
47
+
48
+ .header {
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: space-between;
52
+ padding: 1rem 1.25rem;
53
+ background: rgba(0, 240, 255, 0.1);
54
+ border-bottom: 1px solid var(--modal-color);
55
+ }
56
+
57
+ .title {
58
+ margin: 0;
59
+ font-family: var(--font-display, 'Orbitron', sans-serif);
60
+ font-size: 0.875rem;
61
+ font-weight: 700;
62
+ text-transform: uppercase;
63
+ letter-spacing: 0.125em;
64
+ color: var(--modal-color);
65
+ }
66
+
67
+ .close {
68
+ padding: 0.25rem 0.5rem;
69
+ font-size: 1rem;
70
+ color: rgba(255, 255, 255, 0.5);
71
+ background: transparent;
72
+ border: none;
73
+ cursor: pointer;
74
+ transition: color 0.2s ease;
75
+ }
76
+
77
+ .close:hover {
78
+ color: var(--modal-color);
79
+ }
80
+
81
+ .content {
82
+ padding: 1.25rem;
83
+ max-height: calc(90vh - 3.75rem);
84
+ overflow-y: auto;
85
+ color: rgba(255, 255, 255, 0.8);
86
+ }
87
+
88
+ .scanlines {
89
+ position: absolute;
90
+ inset: 0;
91
+ background: repeating-linear-gradient(
92
+ 0deg,
93
+ transparent,
94
+ transparent 2px,
95
+ rgba(0, 0, 0, 0.1) 2px,
96
+ rgba(0, 0, 0, 0.1) 4px
97
+ );
98
+ pointer-events: none;
99
+ z-index: 10;
100
+ }
101
+
102
+ /* Corner decorations */
103
+ .modal::before,
104
+ .modal::after {
105
+ content: '';
106
+ position: absolute;
107
+ width: 1.25rem;
108
+ height: 1.25rem;
109
+ border: 2px solid var(--modal-color);
110
+ }
111
+
112
+ .modal::before {
113
+ top: -2px;
114
+ left: -2px;
115
+ border-right: none;
116
+ border-bottom: none;
117
+ }
118
+
119
+ .modal::after {
120
+ bottom: -2px;
121
+ right: -2px;
122
+ border-left: none;
123
+ border-top: none;
124
+ }
@@ -0,0 +1,75 @@
1
+ 'use client';
2
+
3
+ import { forwardRef, HTMLAttributes, useEffect } from 'react';
4
+ import styles from './cyber-modal.module.css';
5
+
6
+ export interface CyberModalProps extends HTMLAttributes<HTMLDivElement> {
7
+ /** Modal open state */
8
+ isOpen: boolean;
9
+ /** Close callback */
10
+ onClose: () => void;
11
+ /** Modal title */
12
+ title?: string;
13
+ /** Neon color variant */
14
+ variant?: 'cyan' | 'pink' | 'green' | 'red';
15
+ /** Modal size */
16
+ size?: 'sm' | 'md' | 'lg';
17
+ }
18
+
19
+ export const CyberModal = forwardRef<HTMLDivElement, CyberModalProps>(
20
+ (
21
+ {
22
+ isOpen,
23
+ onClose,
24
+ title,
25
+ variant = 'cyan',
26
+ size = 'md',
27
+ children,
28
+ className,
29
+ ...props
30
+ },
31
+ ref
32
+ ) => {
33
+ useEffect(() => {
34
+ const handleEscape = (e: KeyboardEvent) => {
35
+ if (e.key === 'Escape') onClose();
36
+ };
37
+ if (isOpen) {
38
+ document.addEventListener('keydown', handleEscape);
39
+ document.body.style.overflow = 'hidden';
40
+ }
41
+ return () => {
42
+ document.removeEventListener('keydown', handleEscape);
43
+ document.body.style.overflow = '';
44
+ };
45
+ }, [isOpen, onClose]);
46
+
47
+ if (!isOpen) return null;
48
+
49
+ return (
50
+ <div className={styles.overlay} onClick={onClose}>
51
+ <div
52
+ ref={ref}
53
+ className={`${styles.modal} ${styles[variant]} ${styles[size]} ${className || ''}`}
54
+ onClick={(e) => e.stopPropagation()}
55
+ role="dialog"
56
+ aria-modal="true"
57
+ {...props}
58
+ >
59
+ <div className={styles.header}>
60
+ {title && <h2 className={styles.title}>{title}</h2>}
61
+ <button className={styles.close} onClick={onClose} aria-label="Close">
62
+
63
+ </button>
64
+ </div>
65
+ <div className={styles.content}>{children}</div>
66
+ <div className={styles.scanlines} />
67
+ </div>
68
+ </div>
69
+ );
70
+ }
71
+ );
72
+
73
+ CyberModal.displayName = 'CyberModal';
74
+
75
+ export default CyberModal;
@@ -0,0 +1,87 @@
1
+ 'use client';
2
+
3
+ import { forwardRef, HTMLAttributes, useEffect } from 'react';
4
+
5
+ export interface CyberModalProps extends HTMLAttributes<HTMLDivElement> {
6
+ isOpen: boolean;
7
+ onClose: () => void;
8
+ title?: string;
9
+ variant?: 'cyan' | 'pink' | 'green' | 'red';
10
+ size?: 'sm' | 'md' | 'lg';
11
+ }
12
+
13
+ const variantStyles = {
14
+ cyan: 'border-cyan-400 shadow-[0_0_20px_#00f0ff]',
15
+ pink: 'border-fuchsia-500 shadow-[0_0_20px_#ff00ff]',
16
+ green: 'border-emerald-400 shadow-[0_0_20px_#00ff88]',
17
+ red: 'border-rose-500 shadow-[0_0_20px_#ff0040]',
18
+ };
19
+
20
+ const titleColors = {
21
+ cyan: 'text-cyan-400 bg-cyan-400/10 border-cyan-400',
22
+ pink: 'text-fuchsia-500 bg-fuchsia-500/10 border-fuchsia-500',
23
+ green: 'text-emerald-400 bg-emerald-400/10 border-emerald-400',
24
+ red: 'text-rose-500 bg-rose-500/10 border-rose-500',
25
+ };
26
+
27
+ const sizeStyles = { sm: 'max-w-[400px]', md: 'max-w-[600px]', lg: 'max-w-[900px]' };
28
+
29
+ export const CyberModal = forwardRef<HTMLDivElement, CyberModalProps>(
30
+ ({ isOpen, onClose, title, variant = 'cyan', size = 'md', children, className = '', ...props }, ref) => {
31
+ useEffect(() => {
32
+ const handleEscape = (e: KeyboardEvent) => { if (e.key === 'Escape') onClose(); };
33
+ if (isOpen) {
34
+ document.addEventListener('keydown', handleEscape);
35
+ document.body.style.overflow = 'hidden';
36
+ }
37
+ return () => {
38
+ document.removeEventListener('keydown', handleEscape);
39
+ document.body.style.overflow = '';
40
+ };
41
+ }, [isOpen, onClose]);
42
+
43
+ if (!isOpen) return null;
44
+
45
+ return (
46
+ <div
47
+ className="fixed inset-0 flex items-center justify-center p-5 bg-black/80 backdrop-blur-sm z-[1000] animate-[fadeIn_0.2s]"
48
+ onClick={onClose}
49
+ >
50
+ <div
51
+ ref={ref}
52
+ className={`
53
+ relative w-full ${sizeStyles[size]} max-h-[90vh]
54
+ bg-[#0a0a0f] border-2 ${variantStyles[variant]}
55
+ overflow-hidden animate-[scaleIn_0.3s_ease-out]
56
+ ${className}
57
+ `}
58
+ onClick={(e) => e.stopPropagation()}
59
+ role="dialog"
60
+ aria-modal="true"
61
+ {...props}
62
+ >
63
+ <div className={`flex items-center justify-between px-5 py-4 border-b ${titleColors[variant]}`}>
64
+ {title && (
65
+ <h2 className="m-0 font-['Orbitron',sans-serif] text-sm font-bold uppercase tracking-widest">
66
+ {title}
67
+ </h2>
68
+ )}
69
+ <button
70
+ className="px-2 py-1 text-white/50 hover:text-white bg-transparent border-none cursor-pointer transition-colors"
71
+ onClick={onClose}
72
+ aria-label="Close"
73
+ >
74
+
75
+ </button>
76
+ </div>
77
+ <div className="p-5 max-h-[calc(90vh-60px)] overflow-y-auto text-white/80">
78
+ {children}
79
+ </div>
80
+ </div>
81
+ </div>
82
+ );
83
+ }
84
+ );
85
+
86
+ CyberModal.displayName = 'CyberModal';
87
+ export default CyberModal;
@@ -0,0 +1,61 @@
1
+ .slider {
2
+ --slider-color: #00f0ff;
3
+ display: flex;
4
+ align-items: center;
5
+ gap: 0.75rem;
6
+ }
7
+
8
+ .cyan { --slider-color: #00f0ff; }
9
+ .pink { --slider-color: #ff00ff; }
10
+ .green { --slider-color: #00ff88; }
11
+ .purple { --slider-color: #a855f7; }
12
+
13
+ .track {
14
+ position: relative;
15
+ flex: 1;
16
+ height: 0.5rem;
17
+ background: rgba(255, 255, 255, 0.1);
18
+ border: 1px solid rgba(255, 255, 255, 0.2);
19
+ }
20
+
21
+ .fill {
22
+ position: absolute;
23
+ top: 0;
24
+ left: 0;
25
+ height: 100%;
26
+ background: var(--slider-color);
27
+ box-shadow: 0 0 10px var(--slider-color);
28
+ pointer-events: none;
29
+ }
30
+
31
+ .input {
32
+ position: absolute;
33
+ top: 0;
34
+ left: 0;
35
+ width: 100%;
36
+ height: 100%;
37
+ margin: 0;
38
+ opacity: 0;
39
+ cursor: pointer;
40
+ }
41
+
42
+ .thumb {
43
+ position: absolute;
44
+ top: 50%;
45
+ width: 1rem;
46
+ height: 1rem;
47
+ background: var(--slider-color);
48
+ border: 2px solid hsl(var(--background, 0 0% 4%));
49
+ transform: translate(-50%, -50%) rotate(45deg);
50
+ box-shadow: 0 0 10px var(--slider-color);
51
+ pointer-events: none;
52
+ }
53
+
54
+ .value {
55
+ min-width: 2.5rem;
56
+ font-family: var(--font-display, 'Orbitron', monospace);
57
+ font-size: 0.875rem;
58
+ font-weight: 700;
59
+ color: var(--slider-color);
60
+ text-align: right;
61
+ }
@@ -0,0 +1,41 @@
1
+ 'use client';
2
+
3
+ import { forwardRef, HTMLAttributes } from 'react';
4
+ import styles from './cyber-slider.module.css';
5
+
6
+ export interface CyberSliderProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
7
+ value: number;
8
+ onChange: (value: number) => void;
9
+ min?: number;
10
+ max?: number;
11
+ step?: number;
12
+ variant?: 'cyan' | 'pink' | 'green' | 'purple';
13
+ showValue?: boolean;
14
+ }
15
+
16
+ export const CyberSlider = forwardRef<HTMLDivElement, CyberSliderProps>(
17
+ ({ value, onChange, min = 0, max = 100, step = 1, variant = 'cyan', showValue = false, className, ...props }, ref) => {
18
+ const percentage = ((value - min) / (max - min)) * 100;
19
+ return (
20
+ <div ref={ref} className={`${styles.slider} ${styles[variant]} ${className || ''}`} {...props}>
21
+ <div className={styles.track}>
22
+ <div className={styles.fill} style={{ width: `${percentage}%` }} />
23
+ <input
24
+ type="range"
25
+ min={min}
26
+ max={max}
27
+ step={step}
28
+ value={value}
29
+ onChange={(e) => onChange(Number(e.target.value))}
30
+ className={styles.input}
31
+ />
32
+ <div className={styles.thumb} style={{ left: `${percentage}%` }} />
33
+ </div>
34
+ {showValue && <span className={styles.value}>{value}</span>}
35
+ </div>
36
+ );
37
+ }
38
+ );
39
+
40
+ CyberSlider.displayName = 'CyberSlider';
41
+ export default CyberSlider;