diff --git a/app/page.tsx b/app/page.tsx
index b319f23..a71ce96 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -11,7 +11,7 @@ export default function Home() {
const originalText = "ENTER THE NETWORK"
const glitchInterval = setInterval(() => {
- if (Math.random() > 0.95) {
+ if (Math.random() > 0.7) {
const glitched = originalText
.split("")
.map((char) => (Math.random() > 0.9 ? glitchChars[Math.floor(Math.random() * glitchChars.length)] : char))
@@ -20,7 +20,7 @@ export default function Home() {
setTimeout(() => setGlitchText(originalText), 100)
}
- }, 100)
+ }, 2000)
return () => clearInterval(glitchInterval)
}, [])
@@ -42,10 +42,9 @@ export default function Home() {
/>
- {/* Fractal orbs */}
-
+
@@ -102,7 +101,9 @@ export default function Home() {
INITIALIZE CONNECTION
diff --git a/components/hero.tsx b/components/hero.tsx
index 53b9a51..325401f 100644
--- a/components/hero.tsx
+++ b/components/hero.tsx
@@ -7,15 +7,11 @@ export function Hero() {