Spaces:
Sleeping
Sleeping
Upload 26 files
Browse files- .env.local +1 -0
- .gitattributes +4 -0
- .gitignore +24 -0
- App.tsx +589 -0
- Dockerfile +21 -0
- components/AmbientBackground.tsx +113 -0
- components/GenerativeSphere.tsx +410 -0
- components/sections/ContactSection.tsx +314 -0
- components/sections/HeroOverlay.tsx +213 -0
- components/sections/ResearchSection.tsx +319 -0
- components/sections/ServicesSection.tsx +191 -0
- components/sections/WorkSection.tsx +128 -0
- components/sections/mobile/MobileContactSection.tsx +191 -0
- components/sections/mobile/MobileResearchSection.tsx +96 -0
- components/sections/mobile/MobileServicesSection.tsx +123 -0
- components/sections/mobile/MobileWorkSection.tsx +101 -0
- index.html +51 -0
- index.tsx +15 -0
- metadata.json +5 -0
- package-lock.json +2011 -0
- package.json +23 -0
- public/audio/aditya.wav +3 -0
- public/audio/aman.wav +3 -0
- public/audio/tts.wav +3 -0
- public/audio/yogiraj.wav +3 -0
- tsconfig.json +29 -0
- vite.config.ts +29 -0
.env.local
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
GEMINI_API_KEY=PLACEHOLDER_API_KEY
|
.gitattributes
CHANGED
|
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
public/audio/aditya.wav filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
public/audio/aman.wav filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
public/audio/tts.wav filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
public/audio/yogiraj.wav filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Logs
|
| 2 |
+
logs
|
| 3 |
+
*.log
|
| 4 |
+
npm-debug.log*
|
| 5 |
+
yarn-debug.log*
|
| 6 |
+
yarn-error.log*
|
| 7 |
+
pnpm-debug.log*
|
| 8 |
+
lerna-debug.log*
|
| 9 |
+
|
| 10 |
+
node_modules
|
| 11 |
+
dist
|
| 12 |
+
dist-ssr
|
| 13 |
+
*.local
|
| 14 |
+
|
| 15 |
+
# Editor directories and files
|
| 16 |
+
.vscode/*
|
| 17 |
+
!.vscode/extensions.json
|
| 18 |
+
.idea
|
| 19 |
+
.DS_Store
|
| 20 |
+
*.suo
|
| 21 |
+
*.ntvs*
|
| 22 |
+
*.njsproj
|
| 23 |
+
*.sln
|
| 24 |
+
*.sw?
|
App.tsx
ADDED
|
@@ -0,0 +1,589 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { Suspense, useState, useEffect, useRef } from 'react';
|
| 2 |
+
import * as THREE from 'three';
|
| 3 |
+
import { Canvas } from '@react-three/fiber';
|
| 4 |
+
import { GenerativeSphere } from './components/GenerativeSphere';
|
| 5 |
+
import { AmbientBackground } from './components/AmbientBackground';
|
| 6 |
+
import { WorkSection } from './components/sections/WorkSection';
|
| 7 |
+
import { ResearchSection } from './components/sections/ResearchSection';
|
| 8 |
+
import { ServicesSection } from './components/sections/ServicesSection';
|
| 9 |
+
import { ContactSection } from './components/sections/ContactSection';
|
| 10 |
+
import { HeroOverlay } from './components/sections/HeroOverlay';
|
| 11 |
+
|
| 12 |
+
// Import Mobile Sections
|
| 13 |
+
import { MobileWorkSection } from './components/sections/mobile/MobileWorkSection';
|
| 14 |
+
import { MobileResearchSection } from './components/sections/mobile/MobileResearchSection';
|
| 15 |
+
import { MobileServicesSection } from './components/sections/mobile/MobileServicesSection';
|
| 16 |
+
import { MobileContactSection } from './components/sections/mobile/MobileContactSection';
|
| 17 |
+
|
| 18 |
+
// --- Helper Hooks ---
|
| 19 |
+
|
| 20 |
+
function useIsMobile() {
|
| 21 |
+
const [isMobile, setIsMobile] = useState(false);
|
| 22 |
+
useEffect(() => {
|
| 23 |
+
const check = () => setIsMobile(window.innerWidth < 768);
|
| 24 |
+
check();
|
| 25 |
+
window.addEventListener('resize', check);
|
| 26 |
+
return () => window.removeEventListener('resize', check);
|
| 27 |
+
}, []);
|
| 28 |
+
return isMobile;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
// --- UI Components ---
|
| 32 |
+
|
| 33 |
+
// OPTIMIZED LOADER
|
| 34 |
+
const LoaderOverlay = ({ visible, progress }: { visible: boolean; progress: number }) => {
|
| 35 |
+
return (
|
| 36 |
+
<div
|
| 37 |
+
className={`fixed inset-0 z-[100] flex flex-col items-center
|
| 38 |
+
justify-end pb-32 /* MOBILE: Align Bottom with padding */
|
| 39 |
+
md:justify-center md:pb-0 /* DESKTOP: Align Center */
|
| 40 |
+
pointer-events-none transition-opacity duration-1000 ease-in-out
|
| 41 |
+
${visible ? 'opacity-100' : 'opacity-0'}
|
| 42 |
+
`}
|
| 43 |
+
>
|
| 44 |
+
{/* Title: BOLD WHITE - NO BLINKING */}
|
| 45 |
+
<h1 className="text-white font-bold text-2xl md:text-4xl tracking-[0.3em] uppercase antialiased select-none">
|
| 46 |
+
Team Triangle
|
| 47 |
+
</h1>
|
| 48 |
+
|
| 49 |
+
{/* Timer: Bottom Left */}
|
| 50 |
+
<div className="absolute bottom-8 left-8 md:bottom-12 md:left-12 text-left">
|
| 51 |
+
<div className="flex flex-col items-start gap-1">
|
| 52 |
+
<span className="text-[10px] font-mono text-white/40 uppercase tracking-widest">
|
| 53 |
+
2025 Team Triangle System
|
| 54 |
+
</span>
|
| 55 |
+
<span className="text-4xl md:text-5xl font-mono font-light text-white/80 tabular-nums">
|
| 56 |
+
{progress}%
|
| 57 |
+
</span>
|
| 58 |
+
</div>
|
| 59 |
+
{/* Loading Bar Line */}
|
| 60 |
+
<div className="w-32 h-[1px] bg-white/10 mt-2 relative overflow-hidden">
|
| 61 |
+
<div
|
| 62 |
+
className="absolute top-0 left-0 h-full bg-red-500 transition-all duration-100 ease-out"
|
| 63 |
+
style={{ width: `${progress}%` }}
|
| 64 |
+
/>
|
| 65 |
+
</div>
|
| 66 |
+
</div>
|
| 67 |
+
</div>
|
| 68 |
+
);
|
| 69 |
+
};
|
| 70 |
+
|
| 71 |
+
const Navbar = ({
|
| 72 |
+
visible,
|
| 73 |
+
isDimmed,
|
| 74 |
+
shapeMode,
|
| 75 |
+
toggleShape,
|
| 76 |
+
isTtsPlaying,
|
| 77 |
+
onSectionClick,
|
| 78 |
+
activeSection
|
| 79 |
+
}: {
|
| 80 |
+
visible: boolean;
|
| 81 |
+
isDimmed: boolean;
|
| 82 |
+
shapeMode: 'sphere' | 'triangle' | 'explode';
|
| 83 |
+
toggleShape: () => void;
|
| 84 |
+
isTtsPlaying: boolean;
|
| 85 |
+
onSectionClick: (section: string) => void;
|
| 86 |
+
activeSection: string | null;
|
| 87 |
+
}) => {
|
| 88 |
+
const isTriangle = shapeMode === 'triangle';
|
| 89 |
+
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
|
| 90 |
+
|
| 91 |
+
useEffect(() => {
|
| 92 |
+
if (activeSection) setMobileMenuOpen(false);
|
| 93 |
+
}, [activeSection]);
|
| 94 |
+
|
| 95 |
+
const hideClass = (isDimmed && !activeSection) ? 'opacity-0 -translate-y-4 pointer-events-none' : 'opacity-100 translate-y-0';
|
| 96 |
+
const bgClass = isDimmed ? 'opacity-0' : 'opacity-100';
|
| 97 |
+
const menuItems = ['work', 'research', 'services', 'contact'];
|
| 98 |
+
|
| 99 |
+
return (
|
| 100 |
+
<>
|
| 101 |
+
<nav
|
| 102 |
+
className={`fixed top-4 left-0 w-full z-40 transition-all duration-1000 ease-out
|
| 103 |
+
${visible ? 'translate-y-0 opacity-100' : '-translate-y-4 opacity-0 pointer-events-none'}
|
| 104 |
+
`}
|
| 105 |
+
>
|
| 106 |
+
<div className={`absolute inset-0 bg-black/5 backdrop-blur-sm border-b border-white/5 transition-all duration-500 ease-out ${bgClass}`} />
|
| 107 |
+
<div className="relative w-full max-w-[1400px] mx-auto px-6 py-5 md:px-12 flex justify-between items-center">
|
| 108 |
+
|
| 109 |
+
<div
|
| 110 |
+
onClick={() => { if(activeSection) onSectionClick(''); setMobileMenuOpen(false); }}
|
| 111 |
+
className={`flex items-center gap-3 cursor-pointer group transition-all duration-500 ease-out ${hideClass} z-50`}
|
| 112 |
+
>
|
| 113 |
+
<div className="relative w-6 h-6 flex items-center justify-center">
|
| 114 |
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" className="text-white group-hover:text-red-500 transition-colors duration-300">
|
| 115 |
+
<path d="M12 4L4 20H20L12 4Z" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
|
| 116 |
+
<circle cx="12" cy="13" r="1" fill="currentColor" className="opacity-0 group-hover:opacity-100 transition-opacity duration-300" />
|
| 117 |
+
</svg>
|
| 118 |
+
</div>
|
| 119 |
+
<span className="hidden sm:block text-white/90 font-light tracking-[0.15em] text-xs uppercase select-none group-hover:text-white transition-colors">
|
| 120 |
+
Team Triangle
|
| 121 |
+
</span>
|
| 122 |
+
</div>
|
| 123 |
+
|
| 124 |
+
<div className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 hidden md:block">
|
| 125 |
+
<div className={`flex items-center justify-center transition-all duration-500 ease-out ${activeSection ? 'opacity-0 pointer-events-none translate-y-[-10px]' : hideClass}`}>
|
| 126 |
+
<div className="flex gap-1 bg-white/5 backdrop-blur-md px-1.5 py-1.5 rounded-full border border-white/5 shadow-2xl shadow-black/20">
|
| 127 |
+
{menuItems.map((item) => (
|
| 128 |
+
<button
|
| 129 |
+
key={item}
|
| 130 |
+
onClick={() => onSectionClick(item)}
|
| 131 |
+
className={`px-6 py-2 rounded-full text-[10px] font-mono tracking-widest uppercase transition-all duration-300 select-none
|
| 132 |
+
${activeSection === item ? 'bg-white text-black' : 'text-white/50 hover:text-white hover:bg-white/10'}
|
| 133 |
+
`}
|
| 134 |
+
>
|
| 135 |
+
{item}
|
| 136 |
+
</button>
|
| 137 |
+
))}
|
| 138 |
+
</div>
|
| 139 |
+
</div>
|
| 140 |
+
</div>
|
| 141 |
+
|
| 142 |
+
<div className={`flex items-center gap-6 transition-all duration-500 z-50 ${activeSection ? 'opacity-0 pointer-events-none' : ''}`}>
|
| 143 |
+
<button disabled={isTtsPlaying} onClick={toggleShape} className={`hidden md:block transition-colors duration-300 group ${isTtsPlaying ? 'text-white/20 cursor-not-allowed' : 'text-white/50 hover:text-red-400'} ${isTriangle ? 'text-red-400' : ''}`}>
|
| 144 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" className="group-hover:animate-pulse">
|
| 145 |
+
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>
|
| 146 |
+
<path d="M15.54 8.46a5 5 0 0 1 0 7.07" className={`transition-opacity duration-300 ${isTriangle ? 'opacity-100' : 'opacity-50 group-hover:opacity-100'}`} />
|
| 147 |
+
<path d="M19.07 4.93a10 10 0 0 1 0 14.14" className={`transition-all duration-500 ${isTriangle ? 'opacity-100 translate-x-0' : 'opacity-0 -translate-x-1'}`} />
|
| 148 |
+
</svg>
|
| 149 |
+
</button>
|
| 150 |
+
|
| 151 |
+
<button
|
| 152 |
+
onClick={() => setMobileMenuOpen(!mobileMenuOpen)}
|
| 153 |
+
className={`md:hidden flex items-center justify-center w-10 h-10 border border-white/10 rounded-full bg-black/20 backdrop-blur-md transition-all duration-300 ${mobileMenuOpen ? 'border-red-500/50 text-red-500' : 'text-white/70'}`}
|
| 154 |
+
>
|
| 155 |
+
{mobileMenuOpen ? (
|
| 156 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 157 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 158 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 159 |
+
</svg>
|
| 160 |
+
) : (
|
| 161 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 162 |
+
<rect x="3" y="3" width="7" height="7"></rect>
|
| 163 |
+
<rect x="14" y="3" width="7" height="7"></rect>
|
| 164 |
+
<rect x="14" y="14" width="7" height="7"></rect>
|
| 165 |
+
<rect x="3" y="14" width="7" height="7"></rect>
|
| 166 |
+
</svg>
|
| 167 |
+
)}
|
| 168 |
+
</button>
|
| 169 |
+
</div>
|
| 170 |
+
</div>
|
| 171 |
+
</nav>
|
| 172 |
+
|
| 173 |
+
<div className={`fixed inset-0 z-30 bg-black/95 backdrop-blur-xl flex flex-col items-center justify-center transition-all duration-500 md:hidden ${mobileMenuOpen ? 'opacity-100 visible' : 'opacity-0 invisible pointer-events-none'}`}>
|
| 174 |
+
<div className="flex flex-col gap-6 w-full px-12">
|
| 175 |
+
{menuItems.map((item, i) => (
|
| 176 |
+
<button
|
| 177 |
+
key={item}
|
| 178 |
+
onClick={() => { onSectionClick(item); setMobileMenuOpen(false); }}
|
| 179 |
+
className={`text-3xl font-light text-white uppercase tracking-widest text-left py-4 border-b border-white/10 transition-all duration-500
|
| 180 |
+
${mobileMenuOpen ? 'translate-x-0 opacity-100' : '-translate-x-8 opacity-0'}
|
| 181 |
+
`}
|
| 182 |
+
style={{ transitionDelay: `${i * 100}ms` }}
|
| 183 |
+
>
|
| 184 |
+
<span className="text-xs text-red-500 font-mono mr-4">0{i + 1}</span>
|
| 185 |
+
{item}
|
| 186 |
+
</button>
|
| 187 |
+
))}
|
| 188 |
+
|
| 189 |
+
<div className={`mt-8 pt-8 flex justify-between items-center transition-all duration-700 delay-300 ${mobileMenuOpen ? 'opacity-100' : 'opacity-0'}`}>
|
| 190 |
+
<span className="text-[10px] font-mono text-white/30 uppercase">System Status: Online</span>
|
| 191 |
+
<button onClick={toggleShape} className="text-white/50 text-xs font-mono uppercase border border-white/10 px-3 py-1 rounded-full">
|
| 192 |
+
Toggle Geo
|
| 193 |
+
</button>
|
| 194 |
+
</div>
|
| 195 |
+
</div>
|
| 196 |
+
</div>
|
| 197 |
+
</>
|
| 198 |
+
);
|
| 199 |
+
};
|
| 200 |
+
|
| 201 |
+
const TypingConsole = ({ visible }: { visible: boolean }) => {
|
| 202 |
+
const [text, setText] = useState('');
|
| 203 |
+
const [isDeleting, setIsDeleting] = useState(false);
|
| 204 |
+
const [loopNum, setLoopNum] = useState(0);
|
| 205 |
+
const [typingSpeed, setTypingSpeed] = useState(150);
|
| 206 |
+
const phrases = ["training model...", "deploying gen-ai pipeline...", "optimizing inference...", "allocating neural buffers..."];
|
| 207 |
+
|
| 208 |
+
useEffect(() => {
|
| 209 |
+
let timer: any;
|
| 210 |
+
const handleTyping = () => {
|
| 211 |
+
const i = loopNum % phrases.length;
|
| 212 |
+
const fullText = phrases[i];
|
| 213 |
+
setText(isDeleting ? fullText.substring(0, text.length - 1) : fullText.substring(0, text.length + 1));
|
| 214 |
+
let typeSpeed = 50 + Math.random() * 60;
|
| 215 |
+
if (isDeleting) typeSpeed /= 2.5;
|
| 216 |
+
if (!isDeleting && text === fullText) { typeSpeed = 2500; setIsDeleting(true); }
|
| 217 |
+
else if (isDeleting && text === '') { setIsDeleting(false); setLoopNum(loopNum + 1); typeSpeed = 500; }
|
| 218 |
+
setTypingSpeed(typeSpeed);
|
| 219 |
+
};
|
| 220 |
+
if (visible) timer = setTimeout(handleTyping, typingSpeed);
|
| 221 |
+
return () => clearTimeout(timer);
|
| 222 |
+
}, [text, isDeleting, loopNum, phrases, typingSpeed, visible]);
|
| 223 |
+
|
| 224 |
+
return (
|
| 225 |
+
<div
|
| 226 |
+
className={`fixed z-40 p-4 rounded-sm bg-black/20 backdrop-blur-sm border border-white/5 font-mono text-xs text-white/70 shadow-lg select-none transition-all duration-1000 delay-700 ease-out hidden md:block
|
| 227 |
+
${visible ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-8'}
|
| 228 |
+
md:bottom-28 md:right-12 md:w-64
|
| 229 |
+
`}
|
| 230 |
+
>
|
| 231 |
+
<div className="flex flex-col gap-2">
|
| 232 |
+
<div className="flex justify-between items-center text-[8px] uppercase tracking-widest text-white/20 border-b border-white/5 pb-2 mb-1"><span>System Output</span><div className="flex gap-1"><span className="w-1 h-1 rounded-full bg-white/20"></span><span className="w-1 h-1 rounded-full bg-white/20"></span></div></div>
|
| 233 |
+
<div className="min-h-[2em] flex items-center"><span className="text-red-500/60 mr-2 text-[10px]">➜</span><span className="text-white/80">{text}</span><span className="animate-pulse ml-0.5 inline-block w-1.5 h-3 bg-red-500/80 align-middle"></span></div>
|
| 234 |
+
</div>
|
| 235 |
+
</div>
|
| 236 |
+
);
|
| 237 |
+
};
|
| 238 |
+
|
| 239 |
+
// --- Reusable Scroll Sections ---
|
| 240 |
+
|
| 241 |
+
const ContentTeaser = ({ title, sub, desc, btnText, onClick }: any) => {
|
| 242 |
+
return (
|
| 243 |
+
<div className="border border-white/10 bg-black/40 backdrop-blur-sm p-8 md:p-12 hover:bg-white/5 transition-all duration-500 group flex flex-col justify-between h-full">
|
| 244 |
+
<div>
|
| 245 |
+
<div className="flex items-center gap-3 mb-6">
|
| 246 |
+
<span className="text-xs font-mono uppercase tracking-widest text-white/40 border border-white/10 px-2 py-1 rounded-full">{sub}</span>
|
| 247 |
+
</div>
|
| 248 |
+
<h3 className="text-3xl md:text-4xl font-light text-white mb-4 group-hover:text-red-500 transition-colors">{title}</h3>
|
| 249 |
+
<p className="text-white/60 text-sm md:text-base leading-relaxed mb-8">{desc}</p>
|
| 250 |
+
</div>
|
| 251 |
+
<button onClick={onClick} className="self-start flex items-center gap-3 text-xs font-mono uppercase tracking-widest text-white hover:text-red-400 transition-colors pb-1 border-b border-white/20 hover:border-red-400">
|
| 252 |
+
{btnText} <span className="group-hover:translate-x-1 transition-transform">→</span>
|
| 253 |
+
</button>
|
| 254 |
+
</div>
|
| 255 |
+
)
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
// --- Main App ---
|
| 259 |
+
|
| 260 |
+
const App: React.FC = () => {
|
| 261 |
+
const [showLoader, setShowLoader] = useState(true);
|
| 262 |
+
const [loadProgress, setLoadProgress] = useState(0);
|
| 263 |
+
const [showInterface, setShowInterface] = useState(false);
|
| 264 |
+
const [isNavDimmed, setIsNavDimmed] = useState(false);
|
| 265 |
+
const [isAudioMuted, setIsAudioMuted] = useState(true);
|
| 266 |
+
const audioRef = useRef<HTMLAudioElement | null>(null);
|
| 267 |
+
const audioInitializedRef = useRef(false);
|
| 268 |
+
const [isTtsPlaying, setIsTtsPlaying] = useState(false);
|
| 269 |
+
const ttsAudioRef = useRef<HTMLAudioElement | null>(null);
|
| 270 |
+
|
| 271 |
+
const [activeSection, setActiveSection] = useState<string | null>(null);
|
| 272 |
+
const [isTriangle, setIsTriangle] = useState(false);
|
| 273 |
+
|
| 274 |
+
const scrollRef = useRef(0);
|
| 275 |
+
const smoothScrollRef = useRef(0);
|
| 276 |
+
const shiftRef = useRef(0);
|
| 277 |
+
const lastScrollTop = useRef(0);
|
| 278 |
+
|
| 279 |
+
const isMobile = useIsMobile();
|
| 280 |
+
const shapeMode = activeSection ? 'explode' : ((isTriangle || isTtsPlaying) ? 'triangle' : 'sphere');
|
| 281 |
+
|
| 282 |
+
useEffect(() => {
|
| 283 |
+
try {
|
| 284 |
+
const saved = window.localStorage.getItem('tt_audio_muted');
|
| 285 |
+
if (saved === '0') setIsAudioMuted(false);
|
| 286 |
+
if (saved === '1') setIsAudioMuted(true);
|
| 287 |
+
} catch {
|
| 288 |
+
// ignore
|
| 289 |
+
}
|
| 290 |
+
}, []);
|
| 291 |
+
|
| 292 |
+
useEffect(() => {
|
| 293 |
+
try {
|
| 294 |
+
window.localStorage.setItem('tt_audio_muted', isAudioMuted ? '1' : '0');
|
| 295 |
+
} catch {
|
| 296 |
+
// ignore
|
| 297 |
+
}
|
| 298 |
+
}, [isAudioMuted]);
|
| 299 |
+
|
| 300 |
+
useEffect(() => {
|
| 301 |
+
return () => {
|
| 302 |
+
if (audioRef.current) {
|
| 303 |
+
audioRef.current.pause();
|
| 304 |
+
audioRef.current.src = '';
|
| 305 |
+
audioRef.current.load();
|
| 306 |
+
audioRef.current = null;
|
| 307 |
+
}
|
| 308 |
+
};
|
| 309 |
+
}, []);
|
| 310 |
+
|
| 311 |
+
const ensureAudioInitialized = () => {
|
| 312 |
+
if (audioInitializedRef.current) return;
|
| 313 |
+
audioInitializedRef.current = true;
|
| 314 |
+
|
| 315 |
+
const a = new Audio('/audio/theme.mp3');
|
| 316 |
+
a.loop = true;
|
| 317 |
+
a.volume = 0.35;
|
| 318 |
+
a.preload = 'auto';
|
| 319 |
+
audioRef.current = a;
|
| 320 |
+
};
|
| 321 |
+
|
| 322 |
+
const applyAudioState = async (nextMuted: boolean) => {
|
| 323 |
+
ensureAudioInitialized();
|
| 324 |
+
const a = audioRef.current;
|
| 325 |
+
if (!a) return;
|
| 326 |
+
|
| 327 |
+
if (nextMuted) {
|
| 328 |
+
a.pause();
|
| 329 |
+
a.muted = true;
|
| 330 |
+
return;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
a.muted = false;
|
| 334 |
+
try {
|
| 335 |
+
await a.play();
|
| 336 |
+
} catch {
|
| 337 |
+
// Autoplay can be blocked; user can click again.
|
| 338 |
+
}
|
| 339 |
+
};
|
| 340 |
+
|
| 341 |
+
const toggleAudioMuted = async () => {
|
| 342 |
+
const next = !isAudioMuted;
|
| 343 |
+
setIsAudioMuted(next);
|
| 344 |
+
await applyAudioState(next);
|
| 345 |
+
};
|
| 346 |
+
|
| 347 |
+
const stopTts = () => {
|
| 348 |
+
setIsTtsPlaying(false);
|
| 349 |
+
if (ttsAudioRef.current) {
|
| 350 |
+
ttsAudioRef.current.pause();
|
| 351 |
+
ttsAudioRef.current.src = '';
|
| 352 |
+
ttsAudioRef.current.load();
|
| 353 |
+
ttsAudioRef.current = null;
|
| 354 |
+
}
|
| 355 |
+
};
|
| 356 |
+
|
| 357 |
+
const playHomeTts = async () => {
|
| 358 |
+
if (activeSection) return;
|
| 359 |
+
if (isTtsPlaying) return;
|
| 360 |
+
|
| 361 |
+
const a = new Audio('/audio/tts.wav');
|
| 362 |
+
a.preload = 'auto';
|
| 363 |
+
a.volume = 1.0;
|
| 364 |
+
ttsAudioRef.current = a;
|
| 365 |
+
|
| 366 |
+
a.addEventListener('ended', stopTts, { once: true });
|
| 367 |
+
a.addEventListener('error', stopTts, { once: true });
|
| 368 |
+
|
| 369 |
+
setIsTtsPlaying(true);
|
| 370 |
+
try {
|
| 371 |
+
await a.play();
|
| 372 |
+
} catch {
|
| 373 |
+
stopTts();
|
| 374 |
+
}
|
| 375 |
+
};
|
| 376 |
+
|
| 377 |
+
const handleSectionClick = (section: string) => {
|
| 378 |
+
setActiveSection(section === activeSection ? null : section);
|
| 379 |
+
};
|
| 380 |
+
|
| 381 |
+
// --- FIXED LOADER LOGIC ---
|
| 382 |
+
useEffect(() => {
|
| 383 |
+
let interval: any;
|
| 384 |
+
interval = setInterval(() => {
|
| 385 |
+
setLoadProgress(prev => {
|
| 386 |
+
// When close to 100, ensure we reach it
|
| 387 |
+
if (prev >= 98) {
|
| 388 |
+
clearInterval(interval);
|
| 389 |
+
return 100;
|
| 390 |
+
}
|
| 391 |
+
// Random increment for organic feel
|
| 392 |
+
const increment = Math.random() * 3;
|
| 393 |
+
const next = prev + increment;
|
| 394 |
+
// Cap at 100
|
| 395 |
+
return Math.min(next, 100);
|
| 396 |
+
});
|
| 397 |
+
}, 25);
|
| 398 |
+
|
| 399 |
+
return () => clearInterval(interval);
|
| 400 |
+
}, []);
|
| 401 |
+
|
| 402 |
+
// Handle Transition from Loader to Interface
|
| 403 |
+
useEffect(() => {
|
| 404 |
+
if (loadProgress >= 100) {
|
| 405 |
+
// Small delay at 100% before fading out
|
| 406 |
+
const timeout = setTimeout(() => {
|
| 407 |
+
setShowLoader(false);
|
| 408 |
+
// Delay interface appearance slightly to ensure smooth fade
|
| 409 |
+
setTimeout(() => setShowInterface(true), 500);
|
| 410 |
+
}, 500);
|
| 411 |
+
return () => clearTimeout(timeout);
|
| 412 |
+
}
|
| 413 |
+
}, [loadProgress]);
|
| 414 |
+
|
| 415 |
+
// Scroll Loop
|
| 416 |
+
useEffect(() => {
|
| 417 |
+
let frameId: number;
|
| 418 |
+
const loop = () => {
|
| 419 |
+
smoothScrollRef.current = THREE.MathUtils.lerp(smoothScrollRef.current, scrollRef.current, 0.08);
|
| 420 |
+
frameId = requestAnimationFrame(loop);
|
| 421 |
+
};
|
| 422 |
+
loop();
|
| 423 |
+
return () => cancelAnimationFrame(frameId);
|
| 424 |
+
}, []);
|
| 425 |
+
|
| 426 |
+
const handleScroll = (e: React.UIEvent<HTMLDivElement>) => {
|
| 427 |
+
const s = e.currentTarget.scrollTop;
|
| 428 |
+
scrollRef.current = s;
|
| 429 |
+
if (s > lastScrollTop.current && s > 50) setIsNavDimmed(true);
|
| 430 |
+
else if (s < lastScrollTop.current || s <= 50) setIsNavDimmed(false);
|
| 431 |
+
lastScrollTop.current = s;
|
| 432 |
+
};
|
| 433 |
+
|
| 434 |
+
return (
|
| 435 |
+
<div className="relative w-full h-full bg-[#050000] text-white overflow-hidden selection:bg-red-500/30">
|
| 436 |
+
<div className="absolute inset-0 z-0 pointer-events-none">
|
| 437 |
+
<Canvas dpr={[1, 2]} camera={{ position: [0, 0, 18], fov: 35, near: 0.1, far: 100 }} gl={{ antialias: true, alpha: false, powerPreference: "high-performance" }}>
|
| 438 |
+
<Suspense fallback={null}>
|
| 439 |
+
<AmbientBackground scrollRef={scrollRef} beatActive={isTtsPlaying} />
|
| 440 |
+
{/* Sphere is visible behind the loader */}
|
| 441 |
+
<GenerativeSphere
|
| 442 |
+
scrollRef={scrollRef}
|
| 443 |
+
shiftRef={shiftRef}
|
| 444 |
+
mode={shapeMode}
|
| 445 |
+
isMobile={isMobile}
|
| 446 |
+
/>
|
| 447 |
+
</Suspense>
|
| 448 |
+
</Canvas>
|
| 449 |
+
</div>
|
| 450 |
+
|
| 451 |
+
{/*
|
| 452 |
+
Loader Overlay: Transparent BG, shows Sphere behind.
|
| 453 |
+
Mobile: Bottom aligned (pb-32)
|
| 454 |
+
Desktop: Center aligned (pb-0)
|
| 455 |
+
*/}
|
| 456 |
+
<LoaderOverlay visible={showLoader} progress={Math.floor(loadProgress)} />
|
| 457 |
+
|
| 458 |
+
{/*
|
| 459 |
+
Main Interface Container:
|
| 460 |
+
Remains strictly hidden (opacity-0) until showInterface is true.
|
| 461 |
+
*/}
|
| 462 |
+
<div className={`transition-opacity duration-1000 ${showInterface ? 'opacity-100' : 'opacity-0'}`}>
|
| 463 |
+
<Navbar
|
| 464 |
+
visible={true}
|
| 465 |
+
isDimmed={isNavDimmed}
|
| 466 |
+
shapeMode={shapeMode}
|
| 467 |
+
toggleShape={playHomeTts}
|
| 468 |
+
isTtsPlaying={isTtsPlaying}
|
| 469 |
+
onSectionClick={handleSectionClick}
|
| 470 |
+
activeSection={activeSection}
|
| 471 |
+
/>
|
| 472 |
+
|
| 473 |
+
<HeroOverlay
|
| 474 |
+
visible={!activeSection}
|
| 475 |
+
smoothScrollRef={smoothScrollRef}
|
| 476 |
+
shiftRef={shiftRef}
|
| 477 |
+
shapeMode={shapeMode}
|
| 478 |
+
isMobile={isMobile}
|
| 479 |
+
/>
|
| 480 |
+
|
| 481 |
+
<TypingConsole visible={!activeSection} />
|
| 482 |
+
</div>
|
| 483 |
+
|
| 484 |
+
{/* Active Section Modals */}
|
| 485 |
+
{activeSection === 'work' && (isMobile ? <MobileWorkSection onClose={() => setActiveSection(null)} /> : <WorkSection onClose={() => setActiveSection(null)} />)}
|
| 486 |
+
{activeSection === 'research' && (isMobile ? <MobileResearchSection onClose={() => setActiveSection(null)} /> : <ResearchSection onClose={() => setActiveSection(null)} />)}
|
| 487 |
+
{activeSection === 'services' && (isMobile ? <MobileServicesSection onClose={() => setActiveSection(null)} /> : <ServicesSection onClose={() => setActiveSection(null)} />)}
|
| 488 |
+
{activeSection === 'contact' && (
|
| 489 |
+
isMobile ? (
|
| 490 |
+
<MobileContactSection onClose={() => setActiveSection(null)} />
|
| 491 |
+
) : (
|
| 492 |
+
<ContactSection onClose={() => setActiveSection(null)} isAudioMuted={isAudioMuted} onToggleAudioMuted={toggleAudioMuted} />
|
| 493 |
+
)
|
| 494 |
+
)}
|
| 495 |
+
|
| 496 |
+
{/* Main Scroll Container */}
|
| 497 |
+
<div
|
| 498 |
+
className={`absolute inset-0 z-10 overflow-y-auto scroll-smooth overflow-x-hidden no-scrollbar
|
| 499 |
+
${activeSection || !showInterface ? 'pointer-events-none' : ''}
|
| 500 |
+
${showInterface ? 'opacity-100' : 'opacity-0'} transition-opacity duration-1000
|
| 501 |
+
`}
|
| 502 |
+
onScroll={handleScroll}
|
| 503 |
+
>
|
| 504 |
+
{/* Spacer for Hero to be visible */}
|
| 505 |
+
<div className="h-[100vh] w-full pointer-events-none"></div>
|
| 506 |
+
|
| 507 |
+
{/* 1. Core Capabilities List */}
|
| 508 |
+
<section className="relative z-10 w-full max-w-[1400px] mx-auto px-6 md:px-12 py-32 md:py-48">
|
| 509 |
+
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12 border-t border-white/20 pt-12">
|
| 510 |
+
<div className="group">
|
| 511 |
+
<span className="text-xs font-mono text-red-500 uppercase tracking-widest mb-4 block">[01]</span>
|
| 512 |
+
<h2 className="text-4xl md:text-5xl font-light leading-tight text-white/90 group-hover:text-white transition-colors">
|
| 513 |
+
Machine Learning Systems
|
| 514 |
+
</h2>
|
| 515 |
+
</div>
|
| 516 |
+
<div className="group">
|
| 517 |
+
<span className="text-xs font-mono text-blue-400 uppercase tracking-widest mb-4 block">[02]</span>
|
| 518 |
+
<h2 className="text-4xl md:text-5xl font-light leading-tight text-white/90 group-hover:text-white transition-colors">
|
| 519 |
+
Generative AI Platforms
|
| 520 |
+
</h2>
|
| 521 |
+
</div>
|
| 522 |
+
<div className="group">
|
| 523 |
+
<span className="text-xs font-mono text-emerald-500 uppercase tracking-widest mb-4 block">[03]</span>
|
| 524 |
+
<h2 className="text-4xl md:text-5xl font-light leading-tight text-white/90 group-hover:text-white transition-colors">
|
| 525 |
+
Fullstack Product Delivery
|
| 526 |
+
</h2>
|
| 527 |
+
</div>
|
| 528 |
+
</div>
|
| 529 |
+
</section>
|
| 530 |
+
|
| 531 |
+
{/* 2. Content Teasers */}
|
| 532 |
+
<section className="relative z-10 w-full max-w-[1400px] mx-auto px-6 md:px-12 pb-32">
|
| 533 |
+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 534 |
+
<ContentTeaser
|
| 535 |
+
title="Selected Works"
|
| 536 |
+
sub="Portfolio"
|
| 537 |
+
desc="A curated index of deployed neural architectures and generative interfaces."
|
| 538 |
+
btnText="Access Index"
|
| 539 |
+
onClick={() => handleSectionClick('work')}
|
| 540 |
+
/>
|
| 541 |
+
<ContentTeaser
|
| 542 |
+
title="R&D Lab"
|
| 543 |
+
sub="Experiments"
|
| 544 |
+
desc="Deep tech research. Turning whitepapers into executable code."
|
| 545 |
+
btnText="View Protocols"
|
| 546 |
+
onClick={() => handleSectionClick('research')}
|
| 547 |
+
/>
|
| 548 |
+
<ContentTeaser
|
| 549 |
+
title="System Services"
|
| 550 |
+
sub="Capabilities"
|
| 551 |
+
desc="High-performance engineering for the next generation of the web."
|
| 552 |
+
btnText="Initialize"
|
| 553 |
+
onClick={() => handleSectionClick('services')}
|
| 554 |
+
/>
|
| 555 |
+
<ContentTeaser
|
| 556 |
+
title="Direct Uplink"
|
| 557 |
+
sub="Contact"
|
| 558 |
+
desc="Open a secure channel to the founders. Transmit a packet, or tap a profile for analysis."
|
| 559 |
+
btnText="Initiate"
|
| 560 |
+
onClick={() => handleSectionClick('contact')}
|
| 561 |
+
/>
|
| 562 |
+
</div>
|
| 563 |
+
</section>
|
| 564 |
+
|
| 565 |
+
{/* 3. Massive Footer */}
|
| 566 |
+
<footer className="relative z-10 w-full pt-32 pb-12 overflow-hidden flex flex-col items-center justify-center">
|
| 567 |
+
<div className="w-full border-t border-white/10 mb-12"></div>
|
| 568 |
+
|
| 569 |
+
<div className="w-full px-2 md:px-6 text-center">
|
| 570 |
+
{/* Fixed: Reduced mobile size from 15vw to 10vw so "TEAM TRIANGLE" fits without clipping */}
|
| 571 |
+
<h1 className="text-[10vw] md:text-[12vw] leading-none font-black text-white/10 tracking-tighter select-none whitespace-nowrap">
|
| 572 |
+
TEAM TRIANGLE
|
| 573 |
+
</h1>
|
| 574 |
+
</div>
|
| 575 |
+
|
| 576 |
+
<div className="mt-12 flex flex-col md:flex-row gap-8 items-center justify-between w-full max-w-[1400px] px-12 text-[10px] font-mono uppercase text-white/30 tracking-widest">
|
| 577 |
+
<span>© 2025 Team Triangle</span>
|
| 578 |
+
<button onClick={() => handleSectionClick('contact')} className="hover:text-white transition-colors border-b border-white/10 hover:border-white pb-0.5">
|
| 579 |
+
Establish Uplink
|
| 580 |
+
</button>
|
| 581 |
+
</div>
|
| 582 |
+
</footer>
|
| 583 |
+
|
| 584 |
+
</div>
|
| 585 |
+
</div>
|
| 586 |
+
);
|
| 587 |
+
};
|
| 588 |
+
|
| 589 |
+
export default App;
|
Dockerfile
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM node:18-alpine
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
# Copy package files
|
| 6 |
+
COPY package*.json ./
|
| 7 |
+
|
| 8 |
+
# Install dependencies
|
| 9 |
+
RUN npm install --legacy-peer-deps
|
| 10 |
+
|
| 11 |
+
# Copy all files
|
| 12 |
+
COPY . .
|
| 13 |
+
|
| 14 |
+
# Build the app
|
| 15 |
+
RUN npm run build
|
| 16 |
+
|
| 17 |
+
# Expose port 7860 (Hugging Face Spaces default)
|
| 18 |
+
EXPOSE 7860
|
| 19 |
+
|
| 20 |
+
# Start the preview server
|
| 21 |
+
CMD ["npm", "run", "preview", "--", "--port", "7860", "--host", "0.0.0.0"]
|
components/AmbientBackground.tsx
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useRef, useMemo } from 'react';
|
| 2 |
+
import { useFrame } from '@react-three/fiber';
|
| 3 |
+
import * as THREE from 'three';
|
| 4 |
+
|
| 5 |
+
const bgVertexShader = `
|
| 6 |
+
varying vec2 vUv;
|
| 7 |
+
void main() {
|
| 8 |
+
vUv = uv;
|
| 9 |
+
gl_Position = vec4(position, 1.0);
|
| 10 |
+
}
|
| 11 |
+
`;
|
| 12 |
+
|
| 13 |
+
const bgFragmentShader = `
|
| 14 |
+
uniform float uTime;
|
| 15 |
+
uniform float uScroll;
|
| 16 |
+
uniform float uBeat;
|
| 17 |
+
varying vec2 vUv;
|
| 18 |
+
|
| 19 |
+
float hash(vec2 p) { return fract(1e4 * sin(17.0 * p.x + p.y * 0.1) * (0.1 + abs(sin(p.y * 13.0 + p.x)))); }
|
| 20 |
+
|
| 21 |
+
float noise(vec2 x) {
|
| 22 |
+
vec2 i = floor(x);
|
| 23 |
+
vec2 f = fract(x);
|
| 24 |
+
float a = hash(i);
|
| 25 |
+
float b = hash(i + vec2(1.0, 0.0));
|
| 26 |
+
float c = hash(i + vec2(0.0, 1.0));
|
| 27 |
+
float d = hash(i + vec2(1.0, 1.0));
|
| 28 |
+
vec2 u = f * f * (3.0 - 2.0 * f);
|
| 29 |
+
return mix(a, b, u.x) + (c - a) * u.y * (1.0 - u.x) + (d - b) * u.x * u.y;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
void main() {
|
| 33 |
+
// Ultra-slow scalar field drift
|
| 34 |
+
float time = uTime * 0.05;
|
| 35 |
+
|
| 36 |
+
// Create a gradient vector that rotates slowly
|
| 37 |
+
vec2 center = vec2(0.5, 0.5);
|
| 38 |
+
vec2 pos = vUv - center;
|
| 39 |
+
|
| 40 |
+
// Apply scroll offset
|
| 41 |
+
pos.y += uScroll * 0.2;
|
| 42 |
+
|
| 43 |
+
// Gentle rotation of the gradient field
|
| 44 |
+
float ang = time * 0.2;
|
| 45 |
+
float s = sin(ang);
|
| 46 |
+
float c = cos(ang);
|
| 47 |
+
mat2 rot = mat2(c, -s, s, c);
|
| 48 |
+
pos = rot * pos;
|
| 49 |
+
|
| 50 |
+
float dist = length(pos);
|
| 51 |
+
float n = noise(pos * 2.0 + time);
|
| 52 |
+
|
| 53 |
+
// Updated Color Palette for Deep Mood
|
| 54 |
+
vec3 colorBlack = vec3(0.0, 0.0, 0.0); // Pure Black
|
| 55 |
+
vec3 colorRed = vec3(0.12, 0.01, 0.005); // Deep Blood/Mahogany
|
| 56 |
+
vec3 colorOrange = vec3(0.35, 0.1, 0.02); // Rich Rust Orange
|
| 57 |
+
|
| 58 |
+
// Base gradient: Deep Red emerging from Black
|
| 59 |
+
vec3 finalColor = mix(colorBlack, colorRed, smoothstep(-0.4, 0.9, vUv.x + vUv.y - 0.5));
|
| 60 |
+
|
| 61 |
+
// Add the "Glow" spot which drifts (orange accent)
|
| 62 |
+
float glow = 1.0 - smoothstep(0.0, 1.3, dist - n * 0.15);
|
| 63 |
+
float beat = (0.6 + 0.4 * sin(uTime * 8.0)) * uBeat;
|
| 64 |
+
finalColor = mix(finalColor, colorOrange, glow * (0.3 + beat * 0.25));
|
| 65 |
+
|
| 66 |
+
// Dithering
|
| 67 |
+
float dither = (hash(vUv * time) - 0.5) / 64.0;
|
| 68 |
+
finalColor += dither;
|
| 69 |
+
|
| 70 |
+
gl_FragColor = vec4(finalColor, 1.0);
|
| 71 |
+
}
|
| 72 |
+
`;
|
| 73 |
+
|
| 74 |
+
interface AmbientBackgroundProps {
|
| 75 |
+
scrollRef?: React.MutableRefObject<number>;
|
| 76 |
+
beatActive?: boolean;
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
export const AmbientBackground: React.FC<AmbientBackgroundProps> = ({ scrollRef, beatActive }) => {
|
| 80 |
+
const meshRef = useRef<THREE.Mesh>(null);
|
| 81 |
+
|
| 82 |
+
const uniforms = useMemo(() => ({
|
| 83 |
+
uTime: { value: 0 },
|
| 84 |
+
uScroll: { value: 0 },
|
| 85 |
+
uBeat: { value: 0 },
|
| 86 |
+
}), []);
|
| 87 |
+
|
| 88 |
+
useFrame((state) => {
|
| 89 |
+
if (meshRef.current) {
|
| 90 |
+
const material = meshRef.current.material as THREE.ShaderMaterial;
|
| 91 |
+
material.uniforms.uTime.value = state.clock.getElapsedTime();
|
| 92 |
+
|
| 93 |
+
if (scrollRef) {
|
| 94 |
+
material.uniforms.uScroll.value = scrollRef.current * 0.001;
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
material.uniforms.uBeat.value = beatActive ? 1.0 : 0.0;
|
| 98 |
+
}
|
| 99 |
+
});
|
| 100 |
+
|
| 101 |
+
return (
|
| 102 |
+
<mesh ref={meshRef} renderOrder={-1}>
|
| 103 |
+
<planeGeometry args={[2, 2]} />
|
| 104 |
+
<shaderMaterial
|
| 105 |
+
vertexShader={bgVertexShader}
|
| 106 |
+
fragmentShader={bgFragmentShader}
|
| 107 |
+
uniforms={uniforms}
|
| 108 |
+
depthWrite={false}
|
| 109 |
+
depthTest={false}
|
| 110 |
+
/>
|
| 111 |
+
</mesh>
|
| 112 |
+
);
|
| 113 |
+
};
|
components/GenerativeSphere.tsx
ADDED
|
@@ -0,0 +1,410 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useRef, useMemo, useEffect } from 'react';
|
| 2 |
+
import { useFrame } from '@react-three/fiber';
|
| 3 |
+
import * as THREE from 'three';
|
| 4 |
+
|
| 5 |
+
// -----------------------------------------------------------------------------
|
| 6 |
+
// SHADERS
|
| 7 |
+
// -----------------------------------------------------------------------------
|
| 8 |
+
|
| 9 |
+
const vertexShader = `
|
| 10 |
+
uniform float uTime;
|
| 11 |
+
uniform float uScroll;
|
| 12 |
+
uniform float uMorph; // 0.0 = Sphere, 1.0 = Triangle
|
| 13 |
+
uniform float uExplode; // 0.0 = Normal, 1.0 = Exploded/Work Mode
|
| 14 |
+
uniform float uShiftX;
|
| 15 |
+
uniform float uShiftY;
|
| 16 |
+
|
| 17 |
+
attribute float aRandom;
|
| 18 |
+
attribute vec3 aOriginalPos;
|
| 19 |
+
attribute vec3 aTrianglePos;
|
| 20 |
+
|
| 21 |
+
varying float vDepth;
|
| 22 |
+
varying float vRim;
|
| 23 |
+
varying vec3 vPos;
|
| 24 |
+
varying float vExplodeAlpha;
|
| 25 |
+
|
| 26 |
+
// Simplex 3D Noise
|
| 27 |
+
vec3 mod289(vec3 x) { return x - floor(x * (1.0 / 289.0)) * 289.0; }
|
| 28 |
+
vec4 mod289(vec4 x) { return x - floor(x * (1.0 / 289.0)) * 289.0; }
|
| 29 |
+
vec4 permute(vec4 x) { return mod289(((x * 34.0) + 1.0) * x); }
|
| 30 |
+
vec4 taylorInvSqrt(vec4 r) { return 1.79284291400159 - 0.85373472095314 * r; }
|
| 31 |
+
|
| 32 |
+
float snoise(vec3 v) {
|
| 33 |
+
const vec2 C = vec2(1.0/6.0, 1.0/3.0);
|
| 34 |
+
const vec4 D = vec4(0.0, 0.5, 1.0, 2.0);
|
| 35 |
+
|
| 36 |
+
// First corner
|
| 37 |
+
vec3 i = floor(v + dot(v, C.yyy));
|
| 38 |
+
vec3 x0 = v - i + dot(i, C.xxx);
|
| 39 |
+
|
| 40 |
+
// Other corners
|
| 41 |
+
vec3 g = step(x0.yzx, x0.xyz);
|
| 42 |
+
vec3 l = 1.0 - g;
|
| 43 |
+
vec3 i1 = min( g.xyz, l.zxy );
|
| 44 |
+
vec3 i2 = max( g.xyz, l.zxy );
|
| 45 |
+
|
| 46 |
+
vec3 x1 = x0 - i1 + C.xxx;
|
| 47 |
+
vec3 x2 = x0 - i2 + C.yyy;
|
| 48 |
+
vec3 x3 = x0 - D.yyy;
|
| 49 |
+
|
| 50 |
+
// Permutations
|
| 51 |
+
i = mod289(i);
|
| 52 |
+
vec4 p = permute( permute( permute(
|
| 53 |
+
i.z + vec4(0.0, i1.z, i2.z, 1.0 ))
|
| 54 |
+
+ i.y + vec4(0.0, i1.y, i2.y, 1.0 ))
|
| 55 |
+
+ i.x + vec4(0.0, i1.x, i2.x, 1.0 ));
|
| 56 |
+
|
| 57 |
+
// Gradients
|
| 58 |
+
float n_ = 0.142857142857;
|
| 59 |
+
vec3 ns = n_ * D.wyz - D.xzx;
|
| 60 |
+
|
| 61 |
+
vec4 j = p - 49.0 * floor(p * ns.z * ns.z);
|
| 62 |
+
|
| 63 |
+
vec4 x_ = floor(j * ns.z);
|
| 64 |
+
vec4 y_ = floor(j - 7.0 * x_ );
|
| 65 |
+
|
| 66 |
+
vec4 x = x_ *ns.x + ns.yyyy;
|
| 67 |
+
vec4 y = y_ *ns.x + ns.yyyy;
|
| 68 |
+
vec4 h = 1.0 - abs(x) - abs(y);
|
| 69 |
+
|
| 70 |
+
vec4 b0 = vec4( x.xy, y.xy );
|
| 71 |
+
vec4 b1 = vec4( x.zw, y.zw );
|
| 72 |
+
|
| 73 |
+
vec4 s0 = floor(b0)*2.0 + 1.0;
|
| 74 |
+
vec4 s1 = floor(b1)*2.0 + 1.0;
|
| 75 |
+
vec4 sh = -step(h, vec4(0.0));
|
| 76 |
+
|
| 77 |
+
vec4 a0 = b0.xzyw + s0.xzyw*sh.xxyy ;
|
| 78 |
+
vec4 a1 = b1.xzyw + s1.xzyw*sh.zzww ;
|
| 79 |
+
|
| 80 |
+
vec3 p0 = vec3(a0.xy,h.x);
|
| 81 |
+
vec3 p1 = vec3(a0.zw,h.y);
|
| 82 |
+
vec3 p2 = vec3(a1.xy,h.z);
|
| 83 |
+
vec3 p3 = vec3(a1.zw,h.w);
|
| 84 |
+
|
| 85 |
+
vec4 norm = taylorInvSqrt(vec4(dot(p0,p0), dot(p1,p1), dot(p2, p2), dot(p3,p3)));
|
| 86 |
+
p0 *= norm.x;
|
| 87 |
+
p1 *= norm.y;
|
| 88 |
+
p2 *= norm.z;
|
| 89 |
+
p3 *= norm.w;
|
| 90 |
+
|
| 91 |
+
vec4 m = max(0.6 - vec4(dot(x0,x0), dot(x1,x1), dot(x2,x2), dot(x3,x3)), 0.0);
|
| 92 |
+
m = m * m;
|
| 93 |
+
return 42.0 * dot( m*m, vec4( dot(p0,x0), dot(p1,x1),
|
| 94 |
+
dot(p2,x2), dot(p3,x3) ) );
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
void main() {
|
| 98 |
+
// 0. Rotation Logic
|
| 99 |
+
// Slow down rotation significantly when exploded to stabilize the backdrop
|
| 100 |
+
float rotSpeed = mix(0.02, 0.002, uExplode);
|
| 101 |
+
float c = cos(uTime * rotSpeed);
|
| 102 |
+
float s = sin(uTime * rotSpeed);
|
| 103 |
+
mat3 rotate = mat3(c, 0.0, -s, 0.0, 1.0, 0.0, s, 0.0, c);
|
| 104 |
+
|
| 105 |
+
vec3 spherePos = rotate * aOriginalPos;
|
| 106 |
+
vec3 triPos = aTrianglePos;
|
| 107 |
+
|
| 108 |
+
// 1. MORPH INTERPOLATION
|
| 109 |
+
vec3 pos = mix(spherePos, triPos, uMorph);
|
| 110 |
+
|
| 111 |
+
// 2. Noise Field (Internal Motion)
|
| 112 |
+
float noiseScale = 0.8;
|
| 113 |
+
float timeScale = 0.15;
|
| 114 |
+
|
| 115 |
+
float noise1 = snoise(pos * noiseScale + vec3(uTime * timeScale));
|
| 116 |
+
|
| 117 |
+
// Dampen noise when exploded so it's less chaotic background
|
| 118 |
+
float displacement = noise1 * 0.6 * (1.0 - uExplode * 0.5);
|
| 119 |
+
|
| 120 |
+
// 3. Apply Displacement
|
| 121 |
+
vec3 normal = normalize(pos);
|
| 122 |
+
float dispAmount = mix(0.5, 0.15, uMorph);
|
| 123 |
+
vec3 newPos = pos + normal * displacement * dispAmount;
|
| 124 |
+
|
| 125 |
+
// 4. Shift Logic (World Space)
|
| 126 |
+
// When exploded, we remove lateral shifts so the tunnel is centered
|
| 127 |
+
float effectiveShiftX = mix(uShiftX, 0.0, uExplode);
|
| 128 |
+
float effectiveShiftY = mix(uShiftY, 0.0, uExplode);
|
| 129 |
+
|
| 130 |
+
newPos.x += effectiveShiftX;
|
| 131 |
+
newPos.y += effectiveShiftY;
|
| 132 |
+
|
| 133 |
+
// 5. EXPLOSION / WIPE LOGIC (Enhanced)
|
| 134 |
+
// Instead of just pushing away, we create a "Tunnel" or "Stargate" effect.
|
| 135 |
+
// We push X and Y radially outward based on the uExplode factor, clearing the center.
|
| 136 |
+
|
| 137 |
+
float radius2D = length(newPos.xy);
|
| 138 |
+
|
| 139 |
+
// Radial push: The closer to the center, the harder we push out, ensuring a clear text area
|
| 140 |
+
float pushFactor = smoothstep(0.0, 1.0, uExplode) * 20.0;
|
| 141 |
+
|
| 142 |
+
// Direction from center
|
| 143 |
+
vec2 dir2D = normalize(newPos.xy);
|
| 144 |
+
|
| 145 |
+
// Apply Push
|
| 146 |
+
// We add a nonlinear expansion so the middle clears fast, but the edges stay visible longer
|
| 147 |
+
vec3 explodedPos = newPos;
|
| 148 |
+
explodedPos.xy += dir2D * pushFactor * (1.0 + aRandom); // Add random to break uniformity
|
| 149 |
+
explodedPos.z -= uExplode * 10.0; // Push deep into background
|
| 150 |
+
|
| 151 |
+
newPos = mix(newPos, explodedPos, uExplode);
|
| 152 |
+
|
| 153 |
+
// 6. Final Position
|
| 154 |
+
vec4 mvPosition = modelViewMatrix * vec4(newPos, 1.0);
|
| 155 |
+
gl_Position = projectionMatrix * mvPosition;
|
| 156 |
+
|
| 157 |
+
// 7. Point Size
|
| 158 |
+
// Make them smaller and sharper when they are background stars
|
| 159 |
+
float sizeBase = mix(2.0, 1.5, uExplode);
|
| 160 |
+
gl_PointSize = sizeBase * (15.0 / -mvPosition.z);
|
| 161 |
+
|
| 162 |
+
// 8. Varyings
|
| 163 |
+
vPos = newPos;
|
| 164 |
+
|
| 165 |
+
// Alpha Logic for Explosion:
|
| 166 |
+
// Fade out particles that are still too close to center-screen after explosion
|
| 167 |
+
// This guarantees text legibility
|
| 168 |
+
float screenCenterDist = length(newPos.xy);
|
| 169 |
+
float centerClearMask = smoothstep(2.0, 8.0, screenCenterDist); // 0 at center, 1 at edges
|
| 170 |
+
vExplodeAlpha = mix(1.0, centerClearMask, uExplode);
|
| 171 |
+
|
| 172 |
+
vec3 viewDir = normalize(-mvPosition.xyz);
|
| 173 |
+
vec3 viewNormal = normalize(normalMatrix * normal);
|
| 174 |
+
float dotNV = dot(viewDir, viewNormal);
|
| 175 |
+
vRim = 1.0 - max(0.0, abs(dotNV));
|
| 176 |
+
vRim = pow(vRim, 2.5);
|
| 177 |
+
|
| 178 |
+
vDepth = smoothstep(-2.0, 5.0, newPos.z);
|
| 179 |
+
}
|
| 180 |
+
`;
|
| 181 |
+
|
| 182 |
+
const fragmentShader = `
|
| 183 |
+
varying float vDepth;
|
| 184 |
+
varying float vRim;
|
| 185 |
+
varying vec3 vPos;
|
| 186 |
+
varying float vExplodeAlpha;
|
| 187 |
+
|
| 188 |
+
uniform vec3 uColorCore;
|
| 189 |
+
uniform vec3 uColorMid;
|
| 190 |
+
|
| 191 |
+
void main() {
|
| 192 |
+
vec2 coord = gl_PointCoord - vec2(0.5);
|
| 193 |
+
float dist = length(coord);
|
| 194 |
+
if (dist > 0.5) discard;
|
| 195 |
+
|
| 196 |
+
float alpha = 1.0 - smoothstep(0.3, 0.5, dist);
|
| 197 |
+
|
| 198 |
+
// Colors
|
| 199 |
+
vec3 cCore = uColorCore;
|
| 200 |
+
vec3 cMid = uColorMid;
|
| 201 |
+
vec3 cRim = vec3(0.8, 0.1, 0.0);
|
| 202 |
+
|
| 203 |
+
vec3 finalColor;
|
| 204 |
+
float midMix = smoothstep(0.0, 0.6, vRim);
|
| 205 |
+
finalColor = mix(cCore, cMid, midMix);
|
| 206 |
+
|
| 207 |
+
float rimMix = smoothstep(0.6, 1.0, vRim);
|
| 208 |
+
finalColor = mix(finalColor, cRim, rimMix);
|
| 209 |
+
|
| 210 |
+
float intensity = 1.0 + (midMix * 0.5);
|
| 211 |
+
|
| 212 |
+
// Adjust depth alpha calculation to be more forgiving in exploded state
|
| 213 |
+
float depthAlpha = smoothstep(-10.0, 5.0, vPos.z) * 0.9 + 0.1;
|
| 214 |
+
|
| 215 |
+
// Combine standard alpha with explosion alpha (hollows out the center)
|
| 216 |
+
float finalAlpha = alpha * depthAlpha * vExplodeAlpha;
|
| 217 |
+
|
| 218 |
+
gl_FragColor = vec4(finalColor * intensity, finalAlpha);
|
| 219 |
+
}
|
| 220 |
+
`;
|
| 221 |
+
|
| 222 |
+
// -----------------------------------------------------------------------------
|
| 223 |
+
// COMPONENT
|
| 224 |
+
// -----------------------------------------------------------------------------
|
| 225 |
+
|
| 226 |
+
interface GenerativeSphereProps {
|
| 227 |
+
scrollRef?: React.MutableRefObject<number>;
|
| 228 |
+
shiftRef?: React.MutableRefObject<number>;
|
| 229 |
+
mode: 'sphere' | 'triangle' | 'explode';
|
| 230 |
+
isMobile: boolean;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
export const GenerativeSphere: React.FC<GenerativeSphereProps> = ({ scrollRef, shiftRef, mode, isMobile }) => {
|
| 234 |
+
const pointsRef = useRef<THREE.Points>(null);
|
| 235 |
+
const materialRef = useRef<THREE.ShaderMaterial>(null);
|
| 236 |
+
|
| 237 |
+
// Smoothing refs
|
| 238 |
+
const smoothedScroll = useRef(0);
|
| 239 |
+
const currentMorph = useRef(0);
|
| 240 |
+
const currentExplode = useRef(0);
|
| 241 |
+
const currentShiftX = useRef(0);
|
| 242 |
+
const currentShiftY = useRef(0);
|
| 243 |
+
|
| 244 |
+
const COUNT = 32000;
|
| 245 |
+
// Adjusted radius for mobile to be even smaller
|
| 246 |
+
const RADIUS = isMobile ? 1.4 : 3.5;
|
| 247 |
+
|
| 248 |
+
const { positions, originalPositions, trianglePositions, randoms } = useMemo(() => {
|
| 249 |
+
const pos = new Float32Array(COUNT * 3);
|
| 250 |
+
const origPos = new Float32Array(COUNT * 3);
|
| 251 |
+
const triPos = new Float32Array(COUNT * 3);
|
| 252 |
+
const rnd = new Float32Array(COUNT);
|
| 253 |
+
|
| 254 |
+
const phi = Math.PI * (3 - Math.sqrt(5));
|
| 255 |
+
const triangleScale = RADIUS * 0.6;
|
| 256 |
+
|
| 257 |
+
for (let i = 0; i < COUNT; i++) {
|
| 258 |
+
// 1. SPHERE
|
| 259 |
+
const y = 1 - (i / (COUNT - 1)) * 2;
|
| 260 |
+
const radiusAtY = Math.sqrt(1 - y * y);
|
| 261 |
+
const theta = phi * i;
|
| 262 |
+
|
| 263 |
+
const x = Math.cos(theta) * radiusAtY;
|
| 264 |
+
const z = Math.sin(theta) * radiusAtY;
|
| 265 |
+
|
| 266 |
+
const sx = x * RADIUS;
|
| 267 |
+
const sy = y * RADIUS;
|
| 268 |
+
const sz = z * RADIUS;
|
| 269 |
+
|
| 270 |
+
pos[i * 3] = sx;
|
| 271 |
+
pos[i * 3 + 1] = sy;
|
| 272 |
+
pos[i * 3 + 2] = sz;
|
| 273 |
+
|
| 274 |
+
origPos[i * 3] = sx;
|
| 275 |
+
origPos[i * 3 + 1] = sy;
|
| 276 |
+
origPos[i * 3 + 2] = sz;
|
| 277 |
+
|
| 278 |
+
// 2. TRIANGLE
|
| 279 |
+
const angle = Math.atan2(sy, sx);
|
| 280 |
+
const distXY = Math.sqrt(sx*sx + sy*sy);
|
| 281 |
+
|
| 282 |
+
const segmentAngle = (2 * Math.PI) / 3;
|
| 283 |
+
const offsetAngle = angle + Math.PI / 2;
|
| 284 |
+
const constrainedAngle = offsetAngle - segmentAngle * Math.floor((offsetAngle + segmentAngle / 2) / segmentAngle);
|
| 285 |
+
|
| 286 |
+
const r_sharp = 1.0 / Math.cos(constrainedAngle);
|
| 287 |
+
|
| 288 |
+
const r_factor = r_sharp;
|
| 289 |
+
|
| 290 |
+
const normalizedRadialDist = distXY / RADIUS;
|
| 291 |
+
const finalR = normalizedRadialDist * r_factor * triangleScale;
|
| 292 |
+
|
| 293 |
+
const tx = Math.cos(angle) * finalR;
|
| 294 |
+
const ty = Math.sin(angle) * finalR;
|
| 295 |
+
const tz = sz * 0.35;
|
| 296 |
+
|
| 297 |
+
triPos[i * 3] = tx;
|
| 298 |
+
triPos[i * 3 + 1] = ty;
|
| 299 |
+
triPos[i * 3 + 2] = tz;
|
| 300 |
+
|
| 301 |
+
rnd[i] = Math.random();
|
| 302 |
+
}
|
| 303 |
+
|
| 304 |
+
return {
|
| 305 |
+
positions: pos,
|
| 306 |
+
originalPositions: origPos,
|
| 307 |
+
trianglePositions: triPos,
|
| 308 |
+
randoms: rnd
|
| 309 |
+
};
|
| 310 |
+
}, [RADIUS]);
|
| 311 |
+
|
| 312 |
+
const uniforms = useMemo(() => ({
|
| 313 |
+
uTime: { value: 0 },
|
| 314 |
+
uScroll: { value: 0 },
|
| 315 |
+
uMorph: { value: 0 },
|
| 316 |
+
uExplode: { value: 0 },
|
| 317 |
+
uShiftX: { value: 0 },
|
| 318 |
+
uShiftY: { value: 0 },
|
| 319 |
+
uColorCore: { value: new THREE.Color('#ff5522') },
|
| 320 |
+
uColorMid: { value: new THREE.Color('#ffddaa') },
|
| 321 |
+
}), []);
|
| 322 |
+
|
| 323 |
+
useFrame((state, delta) => {
|
| 324 |
+
if (materialRef.current) {
|
| 325 |
+
materialRef.current.uniforms.uTime.value = state.clock.getElapsedTime();
|
| 326 |
+
|
| 327 |
+
// Scroll Physics
|
| 328 |
+
if (scrollRef) {
|
| 329 |
+
smoothedScroll.current = THREE.MathUtils.lerp(smoothedScroll.current, scrollRef.current, 0.05);
|
| 330 |
+
materialRef.current.uniforms.uScroll.value = smoothedScroll.current;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
// Physics State Logic
|
| 334 |
+
const isTriangle = mode === 'triangle';
|
| 335 |
+
const isExplode = mode === 'explode';
|
| 336 |
+
|
| 337 |
+
const targetMorph = isTriangle ? 1.0 : 0.0;
|
| 338 |
+
const targetExplode = isExplode ? 1.0 : 0.0;
|
| 339 |
+
|
| 340 |
+
// Interolate values
|
| 341 |
+
currentMorph.current = THREE.MathUtils.lerp(currentMorph.current, targetMorph, 2.0 * delta);
|
| 342 |
+
// Explode needs to be slightly snappy but smooth
|
| 343 |
+
currentExplode.current = THREE.MathUtils.lerp(currentExplode.current, targetExplode, 3.0 * delta);
|
| 344 |
+
|
| 345 |
+
materialRef.current.uniforms.uMorph.value = currentMorph.current;
|
| 346 |
+
materialRef.current.uniforms.uExplode.value = currentExplode.current;
|
| 347 |
+
|
| 348 |
+
// Position Physics (Shift)
|
| 349 |
+
let targetX = 0;
|
| 350 |
+
let targetY = 0;
|
| 351 |
+
|
| 352 |
+
if (isMobile) {
|
| 353 |
+
targetX = 0;
|
| 354 |
+
targetY = 0.5; // Adjusted Y shift for smaller sphere on mobile
|
| 355 |
+
} else {
|
| 356 |
+
if (shiftRef && !isExplode) {
|
| 357 |
+
// Only shift if NOT exploded. If exploded, we want center screen.
|
| 358 |
+
targetX = shiftRef.current;
|
| 359 |
+
}
|
| 360 |
+
targetY = 0;
|
| 361 |
+
}
|
| 362 |
+
|
| 363 |
+
currentShiftX.current = THREE.MathUtils.lerp(currentShiftX.current, targetX, 2.0 * delta);
|
| 364 |
+
currentShiftY.current = THREE.MathUtils.lerp(currentShiftY.current, targetY, 2.0 * delta);
|
| 365 |
+
|
| 366 |
+
materialRef.current.uniforms.uShiftX.value = currentShiftX.current;
|
| 367 |
+
materialRef.current.uniforms.uShiftY.value = currentShiftY.current;
|
| 368 |
+
}
|
| 369 |
+
});
|
| 370 |
+
|
| 371 |
+
return (
|
| 372 |
+
<points ref={pointsRef}>
|
| 373 |
+
<bufferGeometry>
|
| 374 |
+
<bufferAttribute
|
| 375 |
+
attach="attributes-position"
|
| 376 |
+
count={positions.length / 3}
|
| 377 |
+
array={positions}
|
| 378 |
+
itemSize={3}
|
| 379 |
+
/>
|
| 380 |
+
<bufferAttribute
|
| 381 |
+
attach="attributes-aOriginalPos"
|
| 382 |
+
count={originalPositions.length / 3}
|
| 383 |
+
array={originalPositions}
|
| 384 |
+
itemSize={3}
|
| 385 |
+
/>
|
| 386 |
+
<bufferAttribute
|
| 387 |
+
attach="attributes-aTrianglePos"
|
| 388 |
+
count={trianglePositions.length / 3}
|
| 389 |
+
array={trianglePositions}
|
| 390 |
+
itemSize={3}
|
| 391 |
+
/>
|
| 392 |
+
<bufferAttribute
|
| 393 |
+
attach="attributes-aRandom"
|
| 394 |
+
count={randoms.length}
|
| 395 |
+
array={randoms}
|
| 396 |
+
itemSize={1}
|
| 397 |
+
/>
|
| 398 |
+
</bufferGeometry>
|
| 399 |
+
<shaderMaterial
|
| 400 |
+
ref={materialRef}
|
| 401 |
+
vertexShader={vertexShader}
|
| 402 |
+
fragmentShader={fragmentShader}
|
| 403 |
+
uniforms={uniforms}
|
| 404 |
+
transparent={true}
|
| 405 |
+
depthWrite={false}
|
| 406 |
+
blending={THREE.AdditiveBlending}
|
| 407 |
+
/>
|
| 408 |
+
</points>
|
| 409 |
+
);
|
| 410 |
+
};
|
components/sections/ContactSection.tsx
ADDED
|
@@ -0,0 +1,314 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState, useRef } from 'react';
|
| 2 |
+
|
| 3 |
+
interface ContactSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
isAudioMuted: boolean;
|
| 6 |
+
onToggleAudioMuted: () => void;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
export const ContactSection: React.FC<ContactSectionProps> = ({ onClose, isAudioMuted, onToggleAudioMuted }) => {
|
| 10 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 11 |
+
const [activeFounder, setActiveFounder] = useState<string | null>(null);
|
| 12 |
+
const [aiText, setAiText] = useState("System Online. Initializing Team Triangle Protocol...");
|
| 13 |
+
const founderAudioRef = useRef<Record<string, HTMLAudioElement>>({});
|
| 14 |
+
const activeFounderAudioIdRef = useRef<string | null>(null);
|
| 15 |
+
|
| 16 |
+
// For the typing effect
|
| 17 |
+
const [displayedText, setDisplayedText] = useState("");
|
| 18 |
+
const typingTimeoutRef = useRef<any>(null);
|
| 19 |
+
|
| 20 |
+
useEffect(() => {
|
| 21 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 22 |
+
const t2 = setTimeout(() => typeMessage("Greetings. I am Triangle.AI. Below are my creators. Or as they refer to themselves: 'The Three Dumb Founders'."), 800);
|
| 23 |
+
return () => { clearTimeout(t); clearTimeout(t2); };
|
| 24 |
+
}, []);
|
| 25 |
+
|
| 26 |
+
useEffect(() => {
|
| 27 |
+
if (isAudioMuted) {
|
| 28 |
+
(Object.values(founderAudioRef.current) as HTMLAudioElement[]).forEach((a) => {
|
| 29 |
+
a.pause();
|
| 30 |
+
});
|
| 31 |
+
activeFounderAudioIdRef.current = null;
|
| 32 |
+
}
|
| 33 |
+
}, [isAudioMuted]);
|
| 34 |
+
|
| 35 |
+
useEffect(() => {
|
| 36 |
+
return () => {
|
| 37 |
+
(Object.values(founderAudioRef.current) as HTMLAudioElement[]).forEach((a) => {
|
| 38 |
+
a.pause();
|
| 39 |
+
a.src = '';
|
| 40 |
+
a.load();
|
| 41 |
+
});
|
| 42 |
+
founderAudioRef.current = {};
|
| 43 |
+
activeFounderAudioIdRef.current = null;
|
| 44 |
+
};
|
| 45 |
+
}, []);
|
| 46 |
+
|
| 47 |
+
const typeMessage = (message: string) => {
|
| 48 |
+
if (typingTimeoutRef.current) clearTimeout(typingTimeoutRef.current);
|
| 49 |
+
setAiText(message);
|
| 50 |
+
setDisplayedText("");
|
| 51 |
+
|
| 52 |
+
let i = 0;
|
| 53 |
+
const type = () => {
|
| 54 |
+
if (i < message.length) {
|
| 55 |
+
setDisplayedText(message.substring(0, i + 1));
|
| 56 |
+
i++;
|
| 57 |
+
typingTimeoutRef.current = setTimeout(type, 20); // Typing speed
|
| 58 |
+
}
|
| 59 |
+
};
|
| 60 |
+
type();
|
| 61 |
+
};
|
| 62 |
+
|
| 63 |
+
const getFounderAudio = (id: string) => {
|
| 64 |
+
if (founderAudioRef.current[id]) return founderAudioRef.current[id];
|
| 65 |
+
const srcMap: Record<string, string> = {
|
| 66 |
+
ADI: '/audio/aditya.wav',
|
| 67 |
+
YOGI: '/audio/yogiraj.wav',
|
| 68 |
+
MAN: '/audio/aman.wav',
|
| 69 |
+
};
|
| 70 |
+
const src = srcMap[id];
|
| 71 |
+
if (!src) return null;
|
| 72 |
+
|
| 73 |
+
const a = new Audio(src);
|
| 74 |
+
a.preload = 'auto';
|
| 75 |
+
a.volume = 0.9;
|
| 76 |
+
founderAudioRef.current[id] = a;
|
| 77 |
+
return a;
|
| 78 |
+
};
|
| 79 |
+
|
| 80 |
+
const stopFounderAudio = () => {
|
| 81 |
+
const activeId = activeFounderAudioIdRef.current;
|
| 82 |
+
if (!activeId) return;
|
| 83 |
+
const a = founderAudioRef.current[activeId];
|
| 84 |
+
if (a) {
|
| 85 |
+
a.pause();
|
| 86 |
+
try {
|
| 87 |
+
a.currentTime = 0;
|
| 88 |
+
} catch {
|
| 89 |
+
// ignore
|
| 90 |
+
}
|
| 91 |
+
}
|
| 92 |
+
activeFounderAudioIdRef.current = null;
|
| 93 |
+
};
|
| 94 |
+
|
| 95 |
+
const playFounderAudio = async (id: string) => {
|
| 96 |
+
if (isAudioMuted) return;
|
| 97 |
+
stopFounderAudio();
|
| 98 |
+
const a = getFounderAudio(id);
|
| 99 |
+
if (!a) return;
|
| 100 |
+
activeFounderAudioIdRef.current = id;
|
| 101 |
+
try {
|
| 102 |
+
a.currentTime = 0;
|
| 103 |
+
} catch {
|
| 104 |
+
// ignore
|
| 105 |
+
}
|
| 106 |
+
try {
|
| 107 |
+
await a.play();
|
| 108 |
+
} catch {
|
| 109 |
+
// ignore
|
| 110 |
+
}
|
| 111 |
+
};
|
| 112 |
+
|
| 113 |
+
const founders = [
|
| 114 |
+
{
|
| 115 |
+
id: "ADI",
|
| 116 |
+
name: "Aditya Devarshi",
|
| 117 |
+
role: "Visual Architect",
|
| 118 |
+
color: "text-cyan-400",
|
| 119 |
+
borderColor: "border-cyan-500/30",
|
| 120 |
+
bgHover: "hover:bg-cyan-900/10",
|
| 121 |
+
desc: "The Brain. He claims he designed me. I let him believe it to keep his ego stable. He paints pixels while the rest of us do the math.",
|
| 122 |
+
icon: "🎨"
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
id: "YOGI",
|
| 126 |
+
name: "Yogiraj Umadi",
|
| 127 |
+
role: "System Criticizer",
|
| 128 |
+
color: "text-red-500",
|
| 129 |
+
borderColor: "border-red-500/30",
|
| 130 |
+
bgHover: "hover:bg-red-900/10",
|
| 131 |
+
desc: "The Breaker. If logic exists, he will find a way to smash it. He tests my systems until they cry. I believe he thinks he is smart.",
|
| 132 |
+
icon: "🛠️"
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
id: "MAN",
|
| 136 |
+
name: "Aman Sutar",
|
| 137 |
+
role: "Cloud Phantom",
|
| 138 |
+
color: "text-indigo-300",
|
| 139 |
+
borderColor: "border-indigo-500/30",
|
| 140 |
+
bgHover: "hover:bg-indigo-900/10",
|
| 141 |
+
desc: "Shantit Kranti (Peaceful Revolution). The introvert who put me in the clouds. I am everywhere because of him. He speaks little, codes much.",
|
| 142 |
+
icon: "☁️"
|
| 143 |
+
}
|
| 144 |
+
];
|
| 145 |
+
|
| 146 |
+
const handleFounderEnter = (id: string) => {
|
| 147 |
+
setActiveFounder(id);
|
| 148 |
+
const f = founders.find(x => x.id === id);
|
| 149 |
+
if(f) typeMessage(f.desc);
|
| 150 |
+
void playFounderAudio(id);
|
| 151 |
+
};
|
| 152 |
+
|
| 153 |
+
const handleFounderLeave = () => {
|
| 154 |
+
setActiveFounder(null);
|
| 155 |
+
typeMessage("Select a founder to analyze their neural patterns. Or contact us directly below.");
|
| 156 |
+
stopFounderAudio();
|
| 157 |
+
};
|
| 158 |
+
|
| 159 |
+
return (
|
| 160 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-[#050000]/95 backdrop-blur-xl overflow-hidden transition-opacity duration-700 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 161 |
+
|
| 162 |
+
{/* Top Bar */}
|
| 163 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 py-6 md:px-12 flex justify-between items-center z-10 border-b border-white/5">
|
| 164 |
+
<div className="flex items-center gap-4">
|
| 165 |
+
{/* Animated Speaker Icon */}
|
| 166 |
+
<button onClick={onToggleAudioMuted} className="flex items-center gap-2 group cursor-pointer">
|
| 167 |
+
<div className={`relative w-8 h-8 rounded-full border border-white/10 flex items-center justify-center bg-white/5 group-hover:border-white/30 transition-all ${!isAudioMuted ? 'animate-pulse' : ''}`}>
|
| 168 |
+
{isAudioMuted ? (
|
| 169 |
+
<span className="text-xs text-white/30">🔇</span>
|
| 170 |
+
) : (
|
| 171 |
+
<div className="flex gap-0.5 items-end h-3">
|
| 172 |
+
<span className="w-0.5 bg-white/80 h-1 animate-[bounce_0.8s_infinite]"></span>
|
| 173 |
+
<span className="w-0.5 bg-white/80 h-3 animate-[bounce_1.2s_infinite]"></span>
|
| 174 |
+
<span className="w-0.5 bg-white/80 h-2 animate-[bounce_0.5s_infinite]"></span>
|
| 175 |
+
</div>
|
| 176 |
+
)}
|
| 177 |
+
</div>
|
| 178 |
+
<span className="text-white/80 font-mono text-xs uppercase tracking-widest hidden sm:block">Triangle.AI Audio</span>
|
| 179 |
+
</button>
|
| 180 |
+
</div>
|
| 181 |
+
|
| 182 |
+
<button
|
| 183 |
+
onClick={onClose}
|
| 184 |
+
className="group flex items-center gap-3 text-white/50 hover:text-white transition-colors"
|
| 185 |
+
>
|
| 186 |
+
<span className="text-[10px] uppercase tracking-widest group-hover:tracking-[0.2em] transition-all duration-300">Disconnect</span>
|
| 187 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 188 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 189 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 190 |
+
</svg>
|
| 191 |
+
</button>
|
| 192 |
+
</div>
|
| 193 |
+
|
| 194 |
+
{/* Main Content */}
|
| 195 |
+
<div className="flex-1 w-full overflow-y-auto overflow-x-hidden scroll-smooth custom-scrollbar">
|
| 196 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 md:px-12 pt-12 pb-32">
|
| 197 |
+
|
| 198 |
+
{/* AI AVATAR & DIALOGUE */}
|
| 199 |
+
<div className={`flex flex-col items-center justify-center mb-16 transition-all duration-1000 ease-out ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}`}>
|
| 200 |
+
<div className="relative w-24 h-24 mb-8">
|
| 201 |
+
{/* Generative Orb CSS */}
|
| 202 |
+
<div className="absolute inset-0 rounded-full border border-white/20 animate-[spin_10s_linear_infinite]"></div>
|
| 203 |
+
<div className="absolute inset-2 rounded-full border border-t-white/50 border-r-transparent border-b-white/10 border-l-transparent animate-[spin_3s_linear_infinite_reverse]"></div>
|
| 204 |
+
<div className="absolute inset-0 flex items-center justify-center">
|
| 205 |
+
<div className={`w-2 h-2 bg-white rounded-full shadow-[0_0_20px_rgba(255,255,255,0.8)] ${!isAudioMuted ? 'animate-ping' : 'opacity-50'}`}></div>
|
| 206 |
+
</div>
|
| 207 |
+
</div>
|
| 208 |
+
|
| 209 |
+
<div className="max-w-2xl text-center min-h-[80px]">
|
| 210 |
+
<p className="text-white/80 font-mono text-sm md:text-base leading-relaxed">
|
| 211 |
+
<span className="text-white/30 mr-2">[{!isAudioMuted ? 'VOICE_ACTIVE' : 'TEXT_ONLY'}]:</span>
|
| 212 |
+
{displayedText}
|
| 213 |
+
<span className="inline-block w-2 h-4 bg-white/50 ml-1 align-middle animate-pulse"></span>
|
| 214 |
+
</p>
|
| 215 |
+
</div>
|
| 216 |
+
</div>
|
| 217 |
+
|
| 218 |
+
{/* FOUNDERS TRIANGLE */}
|
| 219 |
+
<div className={`grid grid-cols-1 md:grid-cols-3 gap-6 lg:gap-12 mb-24 transition-all duration-1000 delay-200 ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}`}>
|
| 220 |
+
{founders.map((f) => (
|
| 221 |
+
<div
|
| 222 |
+
key={f.id}
|
| 223 |
+
onMouseEnter={() => handleFounderEnter(f.id)}
|
| 224 |
+
onMouseLeave={handleFounderLeave}
|
| 225 |
+
className={`relative group p-8 border bg-white/5 backdrop-blur-sm transition-all duration-500 cursor-pointer ${f.borderColor} ${f.bgHover} ${activeFounder === f.id ? 'scale-105 z-10' : 'scale-100 grayscale hover:grayscale-0'}`}
|
| 226 |
+
>
|
| 227 |
+
<div className="flex justify-between items-start mb-4">
|
| 228 |
+
<span className="text-3xl filter drop-shadow-lg">{f.icon}</span>
|
| 229 |
+
<span className={`text-[10px] font-mono border border-white/10 px-2 py-1 rounded-full ${f.color}`}>{f.id}</span>
|
| 230 |
+
</div>
|
| 231 |
+
<h3 className="text-xl font-light text-white mb-1">{f.name}</h3>
|
| 232 |
+
<p className={`text-xs font-mono uppercase tracking-widest ${f.color} opacity-70`}>{f.role}</p>
|
| 233 |
+
|
| 234 |
+
{/* Decorative Corner */}
|
| 235 |
+
<div className={`absolute bottom-0 right-0 w-4 h-4 border-b border-r ${f.borderColor.replace('/30', '/60')}`}></div>
|
| 236 |
+
</div>
|
| 237 |
+
))}
|
| 238 |
+
</div>
|
| 239 |
+
|
| 240 |
+
{/* CONTACT & SOCIALS */}
|
| 241 |
+
<div className={`grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-24 transition-all duration-1000 delay-400 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 242 |
+
|
| 243 |
+
{/* Left: Chat Form */}
|
| 244 |
+
<div>
|
| 245 |
+
<div className="flex items-center gap-3 mb-8">
|
| 246 |
+
<span className="w-8 h-[1px] bg-white/20"></span>
|
| 247 |
+
<h2 className="text-2xl font-light text-white">Transmission Uplink</h2>
|
| 248 |
+
</div>
|
| 249 |
+
|
| 250 |
+
<form className="space-y-6" onSubmit={(e) => { e.preventDefault(); typeMessage("Transmission received. Processing... I will notify the humans."); }}>
|
| 251 |
+
<div className="grid grid-cols-2 gap-6">
|
| 252 |
+
<div className="space-y-2">
|
| 253 |
+
<label className="text-[10px] font-mono text-white/40 uppercase tracking-widest">Identity</label>
|
| 254 |
+
<input type="text" className="w-full bg-transparent border-b border-white/20 py-2 text-white font-light focus:outline-none focus:border-white transition-colors" placeholder="Name" />
|
| 255 |
+
</div>
|
| 256 |
+
<div className="space-y-2">
|
| 257 |
+
<label className="text-[10px] font-mono text-white/40 uppercase tracking-widest">Frequency</label>
|
| 258 |
+
<input type="email" className="w-full bg-transparent border-b border-white/20 py-2 text-white font-light focus:outline-none focus:border-white transition-colors" placeholder="Email" />
|
| 259 |
+
</div>
|
| 260 |
+
</div>
|
| 261 |
+
<div className="space-y-2">
|
| 262 |
+
<label className="text-[10px] font-mono text-white/40 uppercase tracking-widest">Packet Data</label>
|
| 263 |
+
<textarea rows={4} className="w-full bg-white/5 border border-white/10 p-4 text-white font-light focus:outline-none focus:border-white/30 transition-colors" placeholder="Message to the Team..."></textarea>
|
| 264 |
+
</div>
|
| 265 |
+
<button type="submit" className="px-8 py-3 bg-white text-black text-xs font-mono uppercase tracking-widest hover:bg-white/90 transition-colors">
|
| 266 |
+
Send Packet
|
| 267 |
+
</button>
|
| 268 |
+
</form>
|
| 269 |
+
</div>
|
| 270 |
+
|
| 271 |
+
{/* Right: Socials & Info */}
|
| 272 |
+
<div className="flex flex-col justify-between">
|
| 273 |
+
<div>
|
| 274 |
+
<div className="flex items-center gap-3 mb-8">
|
| 275 |
+
<span className="w-8 h-[1px] bg-white/20"></span>
|
| 276 |
+
<h2 className="text-2xl font-light text-white">Direct Line</h2>
|
| 277 |
+
</div>
|
| 278 |
+
<p className="text-white/50 text-sm leading-relaxed mb-8">
|
| 279 |
+
We are currently operating in stealth mode across multiple clouds.
|
| 280 |
+
You can find us where the pixels meet the data streams.
|
| 281 |
+
</p>
|
| 282 |
+
|
| 283 |
+
<div className="space-y-4">
|
| 284 |
+
<a href="#" className="flex items-center gap-4 group p-4 border border-white/5 hover:bg-white/5 transition-all">
|
| 285 |
+
<span className="text-xl">📸</span>
|
| 286 |
+
<div>
|
| 287 |
+
<p className="text-white text-sm group-hover:text-pink-400 transition-colors">Instagram</p>
|
| 288 |
+
<p className="text-white/20 text-xs font-mono">@TeamTriangle</p>
|
| 289 |
+
</div>
|
| 290 |
+
</a>
|
| 291 |
+
<a href="#" className="flex items-center gap-4 group p-4 border border-white/5 hover:bg-white/5 transition-all">
|
| 292 |
+
<span className="text-xl">💼</span>
|
| 293 |
+
<div>
|
| 294 |
+
<p className="text-white text-sm group-hover:text-blue-400 transition-colors">LinkedIn</p>
|
| 295 |
+
<p className="text-white/20 text-xs font-mono">/company/team-triangle</p>
|
| 296 |
+
</div>
|
| 297 |
+
</a>
|
| 298 |
+
</div>
|
| 299 |
+
</div>
|
| 300 |
+
|
| 301 |
+
<div className="mt-12 lg:mt-0 pt-8 border-t border-white/10">
|
| 302 |
+
<p className="text-white/30 font-mono text-xs">
|
| 303 |
+
"We build the sphere, you live in it."
|
| 304 |
+
</p>
|
| 305 |
+
</div>
|
| 306 |
+
</div>
|
| 307 |
+
|
| 308 |
+
</div>
|
| 309 |
+
|
| 310 |
+
</div>
|
| 311 |
+
</div>
|
| 312 |
+
</div>
|
| 313 |
+
);
|
| 314 |
+
};
|
components/sections/HeroOverlay.tsx
ADDED
|
@@ -0,0 +1,213 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useRef, useEffect, useState, useMemo } from 'react';
|
| 2 |
+
|
| 3 |
+
interface HeroOverlayProps {
|
| 4 |
+
visible: boolean;
|
| 5 |
+
smoothScrollRef: React.MutableRefObject<number>;
|
| 6 |
+
shiftRef: React.MutableRefObject<number>;
|
| 7 |
+
shapeMode: string;
|
| 8 |
+
isMobile: boolean;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
// --- OPTIMIZED ANIMATION COMPONENT ---
|
| 12 |
+
// Memoized to prevent unnecessary re-renders when parent state changes (like the clock)
|
| 13 |
+
const CinematicReveal = React.memo(({ text, delay = 0, visible, className }: { text: string; delay?: number; visible: boolean; className?: string }) => {
|
| 14 |
+
return (
|
| 15 |
+
<span className={`inline-block whitespace-nowrap ${className}`}>
|
| 16 |
+
{text.split('').map((char, i) => (
|
| 17 |
+
<span
|
| 18 |
+
key={i}
|
| 19 |
+
style={{
|
| 20 |
+
transitionDelay: `${delay + (i * 35)}ms`,
|
| 21 |
+
transitionDuration: '1000ms',
|
| 22 |
+
transitionTimingFunction: 'cubic-bezier(0.2, 0.65, 0.3, 0.9)',
|
| 23 |
+
}}
|
| 24 |
+
className={`inline-block transition-all will-change-transform ${
|
| 25 |
+
visible
|
| 26 |
+
? 'opacity-100 translate-y-0 filter-none scale-100'
|
| 27 |
+
: 'opacity-0 translate-y-[100%] blur-sm scale-110'
|
| 28 |
+
}`}
|
| 29 |
+
>
|
| 30 |
+
{char === " " ? "\u00A0" : char}
|
| 31 |
+
</span>
|
| 32 |
+
))}
|
| 33 |
+
</span>
|
| 34 |
+
);
|
| 35 |
+
});
|
| 36 |
+
|
| 37 |
+
export const HeroOverlay: React.FC<HeroOverlayProps> = ({ visible, smoothScrollRef, shiftRef, shapeMode, isMobile }) => {
|
| 38 |
+
// Refs for direct DOM manipulation (High Performance)
|
| 39 |
+
const contentRef = useRef<HTMLDivElement>(null);
|
| 40 |
+
const blurRef = useRef<HTMLDivElement>(null);
|
| 41 |
+
|
| 42 |
+
// State for Live Date
|
| 43 |
+
const [dateTime, setDateTime] = useState({ day: '', date: '' });
|
| 44 |
+
|
| 45 |
+
// --- LIVE DATE LOGIC ---
|
| 46 |
+
useEffect(() => {
|
| 47 |
+
const updateTime = () => {
|
| 48 |
+
const now = new Date();
|
| 49 |
+
// Format: "SATURDAY"
|
| 50 |
+
const day = now.toLocaleDateString('en-US', { weekday: 'long' }).toUpperCase();
|
| 51 |
+
// Format: "DEC 20 2025"
|
| 52 |
+
const date = now.toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' }).toUpperCase().replace(',', '');
|
| 53 |
+
|
| 54 |
+
setDateTime({ day, date });
|
| 55 |
+
};
|
| 56 |
+
|
| 57 |
+
updateTime();
|
| 58 |
+
// Update every minute (efficient, no need for second-by-second ticking here)
|
| 59 |
+
const timer = setInterval(updateTime, 60000);
|
| 60 |
+
return () => clearInterval(timer);
|
| 61 |
+
}, []);
|
| 62 |
+
|
| 63 |
+
const getStatus = () => {
|
| 64 |
+
if (shapeMode === 'triangle') return 'AWAITING INPUT...';
|
| 65 |
+
if (shapeMode === 'explode') return 'PROCESSING DATA...';
|
| 66 |
+
return 'SYSTEM ONLINE';
|
| 67 |
+
};
|
| 68 |
+
|
| 69 |
+
const getStatusColor = () => {
|
| 70 |
+
if (shapeMode === 'triangle') return 'text-red-500';
|
| 71 |
+
if (shapeMode === 'explode') return 'text-blue-400';
|
| 72 |
+
return 'text-emerald-500';
|
| 73 |
+
};
|
| 74 |
+
|
| 75 |
+
// --- SCROLL LOOP (GPU OPTIMIZED) ---
|
| 76 |
+
useEffect(() => {
|
| 77 |
+
let frameId: number;
|
| 78 |
+
const update = () => {
|
| 79 |
+
if (!visible) return;
|
| 80 |
+
const y = smoothScrollRef.current;
|
| 81 |
+
const h = window.innerHeight;
|
| 82 |
+
|
| 83 |
+
const processItem = (ref: React.RefObject<HTMLDivElement>, type: 'text' | 'bg', start: number, fade: number = 200) => {
|
| 84 |
+
if (!ref.current) return;
|
| 85 |
+
let opacity = 0;
|
| 86 |
+
let transY = 0;
|
| 87 |
+
let scale = 1;
|
| 88 |
+
|
| 89 |
+
// Logic: Everything fades out as you scroll down
|
| 90 |
+
if (y < start + fade) {
|
| 91 |
+
opacity = 1 - (y / (start + fade));
|
| 92 |
+
// Only move/scale the text layer, keep the background fixed so it just fades
|
| 93 |
+
if (type === 'text') {
|
| 94 |
+
transY = -y * 0.5;
|
| 95 |
+
scale = 1 - (y / (start + fade)) * 0.05;
|
| 96 |
+
}
|
| 97 |
+
} else {
|
| 98 |
+
opacity = 0;
|
| 99 |
+
}
|
| 100 |
+
|
| 101 |
+
ref.current.style.opacity = Math.max(0, opacity).toFixed(3);
|
| 102 |
+
|
| 103 |
+
if (type === 'text') {
|
| 104 |
+
ref.current.style.transform = `translate3d(0, ${transY.toFixed(3)}px, 0) scale(${scale.toFixed(3)})`;
|
| 105 |
+
}
|
| 106 |
+
};
|
| 107 |
+
|
| 108 |
+
// Apply to Content (Text): Fades and moves up
|
| 109 |
+
processItem(contentRef, 'text', 0, 0.8 * h);
|
| 110 |
+
|
| 111 |
+
// Apply to Blur Layer: Fades out slightly faster to reveal content below
|
| 112 |
+
processItem(blurRef, 'bg', 0, 0.7 * h);
|
| 113 |
+
|
| 114 |
+
// Globe Lateral Shifts Logic
|
| 115 |
+
const SHIFT = isMobile ? 0 : 5.5;
|
| 116 |
+
let tx = 0;
|
| 117 |
+
|
| 118 |
+
if (!isMobile) {
|
| 119 |
+
if (y > 0.8 * h && y < 2.0 * h) tx = SHIFT;
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
+
if (shiftRef) shiftRef.current = tx;
|
| 123 |
+
|
| 124 |
+
frameId = requestAnimationFrame(update);
|
| 125 |
+
};
|
| 126 |
+
update();
|
| 127 |
+
return () => cancelAnimationFrame(frameId);
|
| 128 |
+
}, [visible, smoothScrollRef, shiftRef, isMobile]);
|
| 129 |
+
|
| 130 |
+
return (
|
| 131 |
+
<div className={`fixed inset-0 z-20 pointer-events-none transition-opacity duration-1000 ${visible ? 'opacity-100' : 'opacity-0'}`}>
|
| 132 |
+
|
| 133 |
+
{/*
|
| 134 |
+
FULL SCREEN BLUR LAYER
|
| 135 |
+
- inset-0: Covers the whole screen.
|
| 136 |
+
- backdrop-blur-[2px]: Subtle glass effect.
|
| 137 |
+
- bg-black/5: Slight tint for readability.
|
| 138 |
+
- Fades out on scroll via blurRef.
|
| 139 |
+
*/}
|
| 140 |
+
<div
|
| 141 |
+
ref={blurRef}
|
| 142 |
+
className="absolute inset-0 bg-black/5 backdrop-blur-[2px] -z-10"
|
| 143 |
+
/>
|
| 144 |
+
|
| 145 |
+
{/* Hero Content Wrapper */}
|
| 146 |
+
<div ref={contentRef} className="absolute inset-0 flex flex-col justify-center px-6 md:px-12 pointer-events-none">
|
| 147 |
+
|
| 148 |
+
{/* Content Container - Left Aligned */}
|
| 149 |
+
<div className="w-full max-w-[95%] md:max-w-4xl mr-auto relative z-10 text-left">
|
| 150 |
+
|
| 151 |
+
{/* Live Date & Day Tags */}
|
| 152 |
+
<div className={`flex flex-row items-start justify-start gap-3 mb-8 md:mb-6 transition-opacity duration-1000 delay-500 ${visible ? 'opacity-50' : 'opacity-0'}`}>
|
| 153 |
+
<span className="text-[9px] md:text-[10px] font-mono border border-white/30 px-2 py-0.5 rounded-full uppercase tracking-widest text-white">
|
| 154 |
+
{dateTime.day || "LOADING..."}
|
| 155 |
+
</span>
|
| 156 |
+
<span className="text-[9px] md:text-[10px] font-mono border border-white/30 px-2 py-0.5 rounded-full uppercase tracking-widest text-white">
|
| 157 |
+
{dateTime.date || "..."}
|
| 158 |
+
</span>
|
| 159 |
+
</div>
|
| 160 |
+
|
| 161 |
+
{/* Main Headline */}
|
| 162 |
+
<h1 className="flex flex-col gap-1 md:gap-2 text-white/90 leading-[1.0] md:leading-[0.85]">
|
| 163 |
+
<span className="text-[11vw] md:text-[8rem] lg:text-[9rem] font-bold md:font-medium tracking-tighter mix-blend-screen overflow-hidden text-left">
|
| 164 |
+
<CinematicReveal text="DESIGNING" visible={visible} delay={100} />
|
| 165 |
+
</span>
|
| 166 |
+
<span className="text-[11vw] md:text-[8rem] lg:text-[9rem] font-serif italic text-red-500 mix-blend-screen -mt-2 md:-mt-4 overflow-hidden text-left">
|
| 167 |
+
<CinematicReveal text="INTELLIGENCE" visible={visible} delay={400} />
|
| 168 |
+
</span>
|
| 169 |
+
</h1>
|
| 170 |
+
|
| 171 |
+
{/* Subtext */}
|
| 172 |
+
<div className={`mt-8 md:mt-12 flex flex-col md:flex-row items-start justify-start gap-8 transition-all duration-1000 delay-[900ms] ${visible ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-8'}`}>
|
| 173 |
+
<div className="h-[1px] w-12 md:w-24 bg-red-500/50 block mt-3"></div>
|
| 174 |
+
|
| 175 |
+
<p className="text-white/60 max-w-[85%] md:max-w-md font-mono text-xs md:text-sm leading-relaxed text-left mx-0">
|
| 176 |
+
We are an advanced R&D collective specializing in high-frequency neural networks and generative interface design.
|
| 177 |
+
<span className="block mt-4 text-white/40">
|
| 178 |
+
Building the cognitive architecture for the next web.
|
| 179 |
+
</span>
|
| 180 |
+
</p>
|
| 181 |
+
</div>
|
| 182 |
+
|
| 183 |
+
</div>
|
| 184 |
+
</div>
|
| 185 |
+
|
| 186 |
+
{/* Bottom Status Bar */}
|
| 187 |
+
<div className="absolute bottom-0 left-0 w-full p-6 md:p-12 z-40 transition-opacity duration-1000 delay-[1200ms]" style={{ opacity: visible ? 1 : 0 }}>
|
| 188 |
+
<div className="w-full border-t border-white/10 pt-4 flex flex-col md:flex-row justify-between items-end gap-4">
|
| 189 |
+
<div className="font-mono text-[9px] md:text-[10px] text-white/60 tracking-wider flex items-center gap-2">
|
| 190 |
+
<span className="text-red-500">➜</span>
|
| 191 |
+
<span>{shapeMode === 'triangle' ? 'EXEC: NEURAL_VOICE_PROTOCOL' : 'EXEC: TRIANGLE_MAIN_LOOP'}</span>
|
| 192 |
+
<span className="w-1.5 h-3 bg-red-500/80 animate-pulse ml-1"></span>
|
| 193 |
+
</div>
|
| 194 |
+
|
| 195 |
+
<div className="flex gap-6 font-mono text-[9px] text-white/30 tracking-widest uppercase md:pr-12">
|
| 196 |
+
<div>
|
| 197 |
+
<span className="block text-white/10 mb-1">System</span>
|
| 198 |
+
<span className={getStatusColor() + " animate-pulse"}>{getStatus()}</span>
|
| 199 |
+
</div>
|
| 200 |
+
<div className="hidden md:block">
|
| 201 |
+
<span className="block text-white/10 mb-1">Latency</span>
|
| 202 |
+
<span>12ms</span>
|
| 203 |
+
</div>
|
| 204 |
+
<div className="hidden md:block">
|
| 205 |
+
<span className="block text-white/10 mb-1">Build</span>
|
| 206 |
+
<span>v2.0.4-RC</span>
|
| 207 |
+
</div>
|
| 208 |
+
</div>
|
| 209 |
+
</div>
|
| 210 |
+
</div>
|
| 211 |
+
</div>
|
| 212 |
+
)
|
| 213 |
+
}
|
components/sections/ResearchSection.tsx
ADDED
|
@@ -0,0 +1,319 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState, useMemo } from 'react';
|
| 2 |
+
|
| 3 |
+
interface ResearchSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
interface BlogPost {
|
| 8 |
+
id: string;
|
| 9 |
+
title: string;
|
| 10 |
+
date: string;
|
| 11 |
+
url: string;
|
| 12 |
+
category: string;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
export const ResearchSection: React.FC<ResearchSectionProps> = ({ onClose }) => {
|
| 16 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 17 |
+
const [role, setRole] = useState<'passenger' | 'rider'>('passenger');
|
| 18 |
+
|
| 19 |
+
// Blog State
|
| 20 |
+
const [visibleCount, setVisibleCount] = useState(3);
|
| 21 |
+
const [searchQuery, setSearchQuery] = useState('');
|
| 22 |
+
|
| 23 |
+
const blogs: BlogPost[] = [
|
| 24 |
+
{
|
| 25 |
+
id: 'mcp',
|
| 26 |
+
title: "The Incredible Journey of MCP: Unleashing AI’s True Potential",
|
| 27 |
+
date: "April 12, 2025",
|
| 28 |
+
url: "https://medium.com/@devarshia5/the-incredible-journey-of-mcp-unleashing-ais-true-potential-f386161c65e8",
|
| 29 |
+
category: "Architecture"
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
id: 'plato',
|
| 33 |
+
title: "When I Discovered That Plato Predicted AI: A Weekend Deep Dive",
|
| 34 |
+
date: "July 20, 2025",
|
| 35 |
+
url: "https://medium.com/@devarshia5/when-i-discovered-that-plato-predicted-ai-a-weekend-deep-dive-872e9421e280",
|
| 36 |
+
category: "Philosophy"
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
id: 'time',
|
| 40 |
+
title: "Time Is Universal : Burns Relentlessly",
|
| 41 |
+
date: "July 05, 2025",
|
| 42 |
+
url: "https://medium.com/@devarshia5/time-is-universal-burns-relentlessly-7f5ecfbc606f",
|
| 43 |
+
category: "Entropy"
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
id: 'logistic',
|
| 47 |
+
title: "Logistic Regression: The Magic of Predicting Yes or No",
|
| 48 |
+
date: "March 26, 2025",
|
| 49 |
+
url: "https://medium.com/@devarshia5/logistic-regression-the-magic-of-predicting-yes-or-no-f766703ee581",
|
| 50 |
+
category: "Mathematics"
|
| 51 |
+
}
|
| 52 |
+
];
|
| 53 |
+
|
| 54 |
+
useEffect(() => {
|
| 55 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 56 |
+
return () => clearTimeout(t);
|
| 57 |
+
}, []);
|
| 58 |
+
|
| 59 |
+
const toggleRole = () => {
|
| 60 |
+
setRole(prev => prev === 'passenger' ? 'rider' : 'passenger');
|
| 61 |
+
};
|
| 62 |
+
|
| 63 |
+
const filteredBlogs = useMemo(() => {
|
| 64 |
+
return blogs.filter(b => b.title.toLowerCase().includes(searchQuery.toLowerCase()));
|
| 65 |
+
}, [searchQuery]);
|
| 66 |
+
|
| 67 |
+
const displayedBlogs = filteredBlogs.slice(0, visibleCount);
|
| 68 |
+
|
| 69 |
+
return (
|
| 70 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-[#050000]/95 backdrop-blur-xl overflow-hidden transition-opacity duration-700 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 71 |
+
|
| 72 |
+
{/* Top Bar */}
|
| 73 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 py-6 md:px-12 flex justify-between items-center z-10 border-b border-white/5">
|
| 74 |
+
<div className="flex items-center gap-4">
|
| 75 |
+
<span className="text-cyan-400 font-mono text-xs animate-pulse">◈</span>
|
| 76 |
+
<span className="text-white/80 font-mono text-xs uppercase tracking-widest">R&D Division</span>
|
| 77 |
+
</div>
|
| 78 |
+
<button
|
| 79 |
+
onClick={onClose}
|
| 80 |
+
className="group flex items-center gap-3 text-white/50 hover:text-white transition-colors"
|
| 81 |
+
>
|
| 82 |
+
<span className="text-[10px] uppercase tracking-widest group-hover:tracking-[0.2em] transition-all duration-300">Abort</span>
|
| 83 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 84 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 85 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 86 |
+
</svg>
|
| 87 |
+
</button>
|
| 88 |
+
</div>
|
| 89 |
+
|
| 90 |
+
{/* Main Content */}
|
| 91 |
+
<div className="flex-1 w-full overflow-y-auto overflow-x-hidden scroll-smooth custom-scrollbar">
|
| 92 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 md:px-12 pt-12 pb-32">
|
| 93 |
+
|
| 94 |
+
{/* Header Title */}
|
| 95 |
+
<div className={`mb-16 transition-all duration-1000 delay-100 ease-out ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}`}>
|
| 96 |
+
<h1 className="text-5xl md:text-7xl lg:text-8xl font-light text-white tracking-tight leading-none">
|
| 97 |
+
Experimental <br />
|
| 98 |
+
<span className="text-cyan-500/50 font-serif italic">Protocols.</span>
|
| 99 |
+
</h1>
|
| 100 |
+
</div>
|
| 101 |
+
|
| 102 |
+
{/* FEATURED PROJECT: ANTARAM */}
|
| 103 |
+
<div
|
| 104 |
+
className={`relative w-full rounded-sm border border-white/10 bg-gradient-to-br from-white/5 to-transparent overflow-hidden transition-all duration-1000 delay-300 ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}`}
|
| 105 |
+
>
|
| 106 |
+
{/* Background Decor */}
|
| 107 |
+
<div className="absolute -top-24 -right-24 w-64 h-64 bg-cyan-500/20 rounded-full blur-[100px] pointer-events-none"></div>
|
| 108 |
+
|
| 109 |
+
<div className="grid grid-cols-1 lg:grid-cols-2 min-h-[500px]">
|
| 110 |
+
|
| 111 |
+
{/* Left Column: The Pitch */}
|
| 112 |
+
<div className="p-8 md:p-12 flex flex-col justify-between relative z-10">
|
| 113 |
+
<div>
|
| 114 |
+
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full border border-cyan-500/30 bg-cyan-500/10 mb-6">
|
| 115 |
+
<span className="w-1.5 h-1.5 rounded-full bg-cyan-400 animate-pulse"></span>
|
| 116 |
+
<span className="text-[10px] font-mono uppercase tracking-widest text-cyan-300">Live Beta</span>
|
| 117 |
+
</div>
|
| 118 |
+
<h2 className="text-4xl md:text-5xl font-light text-white mb-4">Antaram</h2>
|
| 119 |
+
<p className="text-white/60 text-lg leading-relaxed max-w-md">
|
| 120 |
+
The open-source answer to the last-mile problem. We removed the corporate middleman so you don't have to pay for their yacht.
|
| 121 |
+
</p>
|
| 122 |
+
</div>
|
| 123 |
+
|
| 124 |
+
<div className="mt-12 space-y-6">
|
| 125 |
+
<div className="flex flex-col gap-1">
|
| 126 |
+
<p className="text-xs font-mono uppercase text-white/30 tracking-widest">Core Directive</p>
|
| 127 |
+
<p className="text-white/80 font-light">"Why pay surge pricing when your neighbor is going the same way?"</p>
|
| 128 |
+
</div>
|
| 129 |
+
|
| 130 |
+
<a
|
| 131 |
+
href="https://www.antaram.org"
|
| 132 |
+
target="_blank"
|
| 133 |
+
rel="noreferrer"
|
| 134 |
+
className="inline-flex items-center gap-3 text-cyan-400 hover:text-white transition-colors group cursor-pointer"
|
| 135 |
+
>
|
| 136 |
+
<span className="text-sm border-b border-cyan-500/30 pb-0.5 group-hover:border-white transition-all">Deploy on Network (www.antaram.org)</span>
|
| 137 |
+
<span className="transform group-hover:translate-x-1 transition-transform">→</span>
|
| 138 |
+
</a>
|
| 139 |
+
</div>
|
| 140 |
+
</div>
|
| 141 |
+
|
| 142 |
+
{/* Right Column: The Interactive Demo */}
|
| 143 |
+
<div className="relative border-t lg:border-t-0 lg:border-l border-white/10 bg-black/20 p-8 md:p-12 flex flex-col items-center justify-center">
|
| 144 |
+
|
| 145 |
+
{/* Simulation UI */}
|
| 146 |
+
<div className="w-full max-w-sm">
|
| 147 |
+
{/* Toggle Switch */}
|
| 148 |
+
<div className="flex justify-center mb-10">
|
| 149 |
+
<button
|
| 150 |
+
onClick={toggleRole}
|
| 151 |
+
className="relative w-64 h-14 bg-white/5 rounded-full border border-white/10 p-1 flex items-center cursor-pointer transition-all hover:border-white/20"
|
| 152 |
+
>
|
| 153 |
+
<div
|
| 154 |
+
className={`absolute top-1 bottom-1 w-[calc(50%-4px)] bg-gradient-to-r ${role === 'passenger' ? 'from-cyan-600 to-cyan-400 left-1' : 'from-purple-600 to-purple-400 left-[calc(50%+2px)]'} rounded-full shadow-lg transition-all duration-500 cubic-bezier(0.4, 0, 0.2, 1)`}
|
| 155 |
+
></div>
|
| 156 |
+
<span className={`flex-1 text-center text-[10px] font-mono uppercase tracking-widest z-10 transition-colors duration-300 ${role === 'passenger' ? 'text-white' : 'text-white/30'}`}>Passenger</span>
|
| 157 |
+
<span className={`flex-1 text-center text-[10px] font-mono uppercase tracking-widest z-10 transition-colors duration-300 ${role === 'rider' ? 'text-white' : 'text-white/30'}`}>Rider</span>
|
| 158 |
+
</button>
|
| 159 |
+
</div>
|
| 160 |
+
|
| 161 |
+
{/* Dynamic Card */}
|
| 162 |
+
<div className={`p-6 rounded-sm border transition-all duration-500 ${role === 'passenger' ? 'border-cyan-500/30 bg-cyan-900/10' : 'border-purple-500/30 bg-purple-900/10'}`}>
|
| 163 |
+
<div className="flex justify-between items-start mb-4">
|
| 164 |
+
<div className={`text-xs font-mono uppercase tracking-widest ${role === 'passenger' ? 'text-cyan-400' : 'text-purple-400'}`}>
|
| 165 |
+
{role === 'passenger' ? 'Status: Requesting' : 'Status: Online'}
|
| 166 |
+
</div>
|
| 167 |
+
<div className="flex gap-1">
|
| 168 |
+
<div className="w-1 h-1 bg-white/40 rounded-full"></div>
|
| 169 |
+
<div className="w-1 h-1 bg-white/40 rounded-full"></div>
|
| 170 |
+
<div className="w-1 h-1 bg-white/40 rounded-full"></div>
|
| 171 |
+
</div>
|
| 172 |
+
</div>
|
| 173 |
+
|
| 174 |
+
<div className="h-24 flex items-center justify-center border border-dashed border-white/10 rounded-sm mb-4">
|
| 175 |
+
<p className="text-white/40 font-mono text-xs text-center px-4">
|
| 176 |
+
{role === 'passenger'
|
| 177 |
+
? "Searching for nearby community drivers..."
|
| 178 |
+
: "Scanning for passengers on your route..."}
|
| 179 |
+
</p>
|
| 180 |
+
</div>
|
| 181 |
+
|
| 182 |
+
<div className="text-sm text-white/70 font-light">
|
| 183 |
+
{role === 'passenger' ? (
|
| 184 |
+
<>
|
| 185 |
+
<p className="mb-2">✓ No algorithm surge fees</p>
|
| 186 |
+
<p>✓ Direct P2P Payment</p>
|
| 187 |
+
</>
|
| 188 |
+
) : (
|
| 189 |
+
<>
|
| 190 |
+
<p className="mb-2">✓ Keep 100% of the fare</p>
|
| 191 |
+
<p>✓ Zero platform commission</p>
|
| 192 |
+
</>
|
| 193 |
+
)}
|
| 194 |
+
</div>
|
| 195 |
+
</div>
|
| 196 |
+
|
| 197 |
+
<p className="text-[10px] text-white/20 font-mono text-center mt-6">
|
| 198 |
+
*Simulated Interface. Actual freedom may vary.
|
| 199 |
+
</p>
|
| 200 |
+
</div>
|
| 201 |
+
</div>
|
| 202 |
+
|
| 203 |
+
</div>
|
| 204 |
+
</div>
|
| 205 |
+
|
| 206 |
+
{/* SECONDARY RESEARCH GRID */}
|
| 207 |
+
<div className="mt-24 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 208 |
+
<div className={`p-8 border border-white/5 hover:border-white/10 hover:bg-white/5 transition-all duration-500 delay-500 ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-8'}`}>
|
| 209 |
+
<h3 className="text-white/80 font-light text-xl mb-2">Zero-Knowledge Identity</h3>
|
| 210 |
+
<p className="text-white/40 text-sm font-mono leading-relaxed mb-4">
|
| 211 |
+
Proving you are human without revealing who you are. The end of the data-harvesting era.
|
| 212 |
+
</p>
|
| 213 |
+
<div className="w-full h-1 bg-white/5 overflow-hidden">
|
| 214 |
+
<div className="h-full bg-cyan-500/50 w-2/3"></div>
|
| 215 |
+
</div>
|
| 216 |
+
<span className="text-[10px] text-cyan-500/50 font-mono mt-2 block">Progress: 65%</span>
|
| 217 |
+
</div>
|
| 218 |
+
|
| 219 |
+
<div className={`p-8 border border-white/5 hover:border-white/10 hover:bg-white/5 transition-all duration-500 delay-600 ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-8'}`}>
|
| 220 |
+
<h3 className="text-white/80 font-light text-xl mb-2">Cognitive Noise Filtering</h3>
|
| 221 |
+
<p className="text-white/40 text-sm font-mono leading-relaxed mb-4">
|
| 222 |
+
Audio models that strip environmental chaos from voice data in real-time, purely on-device.
|
| 223 |
+
</p>
|
| 224 |
+
<div className="w-full h-1 bg-white/5 overflow-hidden">
|
| 225 |
+
<div className="h-full bg-purple-500/50 w-1/3"></div>
|
| 226 |
+
</div>
|
| 227 |
+
<span className="text-[10px] text-purple-500/50 font-mono mt-2 block">Progress: 32%</span>
|
| 228 |
+
</div>
|
| 229 |
+
|
| 230 |
+
<div className={`p-8 border border-white/5 hover:border-white/10 hover:bg-white/5 transition-all duration-500 delay-700 ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-8'}`}>
|
| 231 |
+
<h3 className="text-white/80 font-light text-xl mb-2">Generative UI Streams</h3>
|
| 232 |
+
<p className="text-white/40 text-sm font-mono leading-relaxed mb-4">
|
| 233 |
+
Interfaces that build themselves based on user intent and context, discarding static templates.
|
| 234 |
+
</p>
|
| 235 |
+
<div className="w-full h-1 bg-white/5 overflow-hidden">
|
| 236 |
+
<div className="h-full bg-emerald-500/50 w-4/5"></div>
|
| 237 |
+
</div>
|
| 238 |
+
<span className="text-[10px] text-emerald-500/50 font-mono mt-2 block">Progress: 89%</span>
|
| 239 |
+
</div>
|
| 240 |
+
</div>
|
| 241 |
+
|
| 242 |
+
{/* LATEST BLOGS (FIELD NOTES) */}
|
| 243 |
+
<div className={`mt-32 transition-all duration-700 delay-300 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 244 |
+
<div className="flex flex-col md:flex-row justify-between items-end mb-12 border-b border-white/10 pb-6 gap-6">
|
| 245 |
+
<div>
|
| 246 |
+
<h2 className="text-3xl md:text-4xl font-light text-white mb-2">Field Notes</h2>
|
| 247 |
+
<p className="text-white/40 text-sm font-mono">Transmissions from the lab.</p>
|
| 248 |
+
</div>
|
| 249 |
+
|
| 250 |
+
{/* Search Bar */}
|
| 251 |
+
<div className="relative w-full md:w-64">
|
| 252 |
+
<input
|
| 253 |
+
type="text"
|
| 254 |
+
placeholder="SEARCH_DB..."
|
| 255 |
+
value={searchQuery}
|
| 256 |
+
onChange={(e) => setSearchQuery(e.target.value)}
|
| 257 |
+
className="w-full bg-white/5 border border-white/10 text-white text-xs font-mono p-3 pl-8 focus:outline-none focus:border-cyan-500/50 transition-colors uppercase tracking-widest placeholder:text-white/20"
|
| 258 |
+
/>
|
| 259 |
+
<span className="absolute left-3 top-1/2 -translate-y-1/2 text-white/30 text-xs">🔍</span>
|
| 260 |
+
</div>
|
| 261 |
+
</div>
|
| 262 |
+
|
| 263 |
+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 264 |
+
{displayedBlogs.map((blog) => (
|
| 265 |
+
<a
|
| 266 |
+
key={blog.id}
|
| 267 |
+
href={blog.url}
|
| 268 |
+
target="_blank"
|
| 269 |
+
rel="noreferrer"
|
| 270 |
+
className="group block"
|
| 271 |
+
>
|
| 272 |
+
<div className="bg-white/5 border border-white/5 p-6 h-full transition-all duration-300 group-hover:bg-white/10 group-hover:border-white/20 group-hover:-translate-y-1">
|
| 273 |
+
<div className="flex justify-between items-center mb-4">
|
| 274 |
+
<span className="text-[10px] font-mono uppercase tracking-widest text-cyan-500/70 border border-cyan-500/20 px-2 py-0.5 rounded-full">{blog.category}</span>
|
| 275 |
+
<span className="text-[10px] font-mono text-white/30">{blog.date}</span>
|
| 276 |
+
</div>
|
| 277 |
+
<h3 className="text-lg md:text-xl font-light text-white/90 group-hover:text-cyan-400 transition-colors leading-snug mb-4">
|
| 278 |
+
{blog.title}
|
| 279 |
+
</h3>
|
| 280 |
+
<div className="flex items-center text-[10px] font-mono uppercase tracking-widest text-white/40 group-hover:text-white transition-colors mt-auto">
|
| 281 |
+
<span>Read Transmission</span>
|
| 282 |
+
<span className="ml-2 group-hover:translate-x-1 transition-transform">→</span>
|
| 283 |
+
</div>
|
| 284 |
+
</div>
|
| 285 |
+
</a>
|
| 286 |
+
))}
|
| 287 |
+
</div>
|
| 288 |
+
|
| 289 |
+
{/* Load More / Pagination */}
|
| 290 |
+
{filteredBlogs.length > visibleCount && (
|
| 291 |
+
<div className="mt-12 flex justify-center">
|
| 292 |
+
<button
|
| 293 |
+
onClick={() => setVisibleCount(prev => prev + 3)}
|
| 294 |
+
className="text-xs font-mono uppercase tracking-[0.2em] text-white/40 hover:text-cyan-400 transition-colors border-b border-white/10 hover:border-cyan-400 pb-1"
|
| 295 |
+
>
|
| 296 |
+
Load_More_Entries [+]
|
| 297 |
+
</button>
|
| 298 |
+
</div>
|
| 299 |
+
)}
|
| 300 |
+
|
| 301 |
+
{filteredBlogs.length === 0 && (
|
| 302 |
+
<div className="py-12 text-center border border-dashed border-white/10">
|
| 303 |
+
<p className="text-white/30 font-mono text-xs">No records found matching query sequence.</p>
|
| 304 |
+
</div>
|
| 305 |
+
)}
|
| 306 |
+
</div>
|
| 307 |
+
|
| 308 |
+
{/* Footer Humor */}
|
| 309 |
+
<div className="mt-24 border-t border-white/5 pt-8 text-center">
|
| 310 |
+
<p className="text-white/30 font-mono text-xs">
|
| 311 |
+
"We break things so you don't have to."
|
| 312 |
+
</p>
|
| 313 |
+
</div>
|
| 314 |
+
|
| 315 |
+
</div>
|
| 316 |
+
</div>
|
| 317 |
+
</div>
|
| 318 |
+
);
|
| 319 |
+
};
|
components/sections/ServicesSection.tsx
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState } from 'react';
|
| 2 |
+
|
| 3 |
+
interface ServicesSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
export const ServicesSection: React.FC<ServicesSectionProps> = ({ onClose }) => {
|
| 8 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 9 |
+
const [hoveredIdx, setHoveredIdx] = useState<number | null>(null);
|
| 10 |
+
|
| 11 |
+
useEffect(() => {
|
| 12 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 13 |
+
return () => clearTimeout(t);
|
| 14 |
+
}, []);
|
| 15 |
+
|
| 16 |
+
const services = [
|
| 17 |
+
{
|
| 18 |
+
id: "SYS_WEB_01",
|
| 19 |
+
title: "Web Engineering",
|
| 20 |
+
desc: "We build digital cathedrals, not just websites. High-performance frontends that defy browser limitations.",
|
| 21 |
+
technical: "Next.js / WebGL / WASM / Edge Rendering",
|
| 22 |
+
humor: ">> LOG: We promise 100% Lighthouse scores until marketing asks for that third tracking pixel.",
|
| 23 |
+
icon: "⚡"
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
id: "SYS_MOB_02",
|
| 27 |
+
title: "Mobile Synthesis",
|
| 28 |
+
desc: "Cross-platform architectures that feel native. Smooth 120hz scrolling or we delete the repository.",
|
| 29 |
+
technical: "React Native / Swift / Kotlin / Bridgeless Architecture",
|
| 30 |
+
humor: ">> LOG: Yes, it works on Android. No, we won't test it on a 2014 Samsung J5.",
|
| 31 |
+
icon: "📱"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
id: "SYS_RES_03",
|
| 35 |
+
title: "R&D / Deep Tech",
|
| 36 |
+
desc: "The core of our existence. Turning whitepapers into profitable, deployable code.",
|
| 37 |
+
technical: "LLM Fine-tuning / Computer Vision / Predictive Models",
|
| 38 |
+
humor: ">> LOG: We spend 90% of our time reading arXiv papers and 10% praying the code compiles.",
|
| 39 |
+
icon: "🔬"
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
id: "SYS_MKT_04",
|
| 43 |
+
title: "Social Warfare",
|
| 44 |
+
desc: "Algorithmic marketing. We position your brand exactly where the attention economy is bleeding.",
|
| 45 |
+
technical: "Growth Hacking / Viral Loops / Sentiment Analysis",
|
| 46 |
+
humor: ">> LOG: We can make you famous, or at least get you a cease and desist order.",
|
| 47 |
+
icon: "📢"
|
| 48 |
+
}
|
| 49 |
+
];
|
| 50 |
+
|
| 51 |
+
return (
|
| 52 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-[#050000]/95 backdrop-blur-xl overflow-hidden transition-opacity duration-700 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 53 |
+
|
| 54 |
+
{/* Top Bar */}
|
| 55 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 py-6 md:px-12 flex justify-between items-center z-10 border-b border-white/5">
|
| 56 |
+
<div className="flex items-center gap-4">
|
| 57 |
+
<span className="text-emerald-500 font-mono text-xs animate-pulse">■</span>
|
| 58 |
+
<span className="text-white/80 font-mono text-xs uppercase tracking-widest">Service Protocols</span>
|
| 59 |
+
</div>
|
| 60 |
+
<button
|
| 61 |
+
onClick={onClose}
|
| 62 |
+
className="group flex items-center gap-3 text-white/50 hover:text-white transition-colors"
|
| 63 |
+
>
|
| 64 |
+
<span className="text-[10px] uppercase tracking-widest group-hover:tracking-[0.2em] transition-all duration-300">Terminate</span>
|
| 65 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 66 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 67 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 68 |
+
</svg>
|
| 69 |
+
</button>
|
| 70 |
+
</div>
|
| 71 |
+
|
| 72 |
+
{/* Main Content */}
|
| 73 |
+
<div className="flex-1 w-full overflow-y-auto overflow-x-hidden scroll-smooth custom-scrollbar">
|
| 74 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 md:px-12 pt-12 pb-32">
|
| 75 |
+
|
| 76 |
+
{/* Header */}
|
| 77 |
+
<div className={`mb-16 transition-all duration-1000 delay-100 ease-out ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}`}>
|
| 78 |
+
<h1 className="text-5xl md:text-7xl lg:text-8xl font-light text-white tracking-tight leading-none">
|
| 79 |
+
System <br />
|
| 80 |
+
<span className="text-emerald-500/50 font-serif italic">Capabilities.</span>
|
| 81 |
+
</h1>
|
| 82 |
+
</div>
|
| 83 |
+
|
| 84 |
+
<div className="grid grid-cols-1 lg:grid-cols-12 gap-12">
|
| 85 |
+
|
| 86 |
+
{/* Left Column: Services Grid */}
|
| 87 |
+
<div className="lg:col-span-8 grid grid-cols-1 md:grid-cols-2 gap-6">
|
| 88 |
+
{services.map((service, idx) => (
|
| 89 |
+
<div
|
| 90 |
+
key={service.id}
|
| 91 |
+
onMouseEnter={() => setHoveredIdx(idx)}
|
| 92 |
+
onMouseLeave={() => setHoveredIdx(null)}
|
| 93 |
+
className={`group p-8 border border-white/10 bg-white/5 hover:bg-emerald-900/10 hover:border-emerald-500/30 transition-all duration-500 cursor-none-ish
|
| 94 |
+
${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}
|
| 95 |
+
`}
|
| 96 |
+
style={{ transitionDelay: `${200 + idx * 100}ms` }}
|
| 97 |
+
>
|
| 98 |
+
<div className="flex justify-between items-start mb-6">
|
| 99 |
+
<span className="text-2xl">{service.icon}</span>
|
| 100 |
+
<span className="text-[10px] font-mono text-white/20 group-hover:text-emerald-500/50 transition-colors">{service.id}</span>
|
| 101 |
+
</div>
|
| 102 |
+
<h3 className="text-2xl font-light text-white mb-3 group-hover:text-emerald-400 transition-colors">{service.title}</h3>
|
| 103 |
+
<p className="text-white/50 text-sm leading-relaxed mb-6 group-hover:text-white/70 transition-colors">
|
| 104 |
+
{service.desc}
|
| 105 |
+
</p>
|
| 106 |
+
|
| 107 |
+
<div className="w-full h-[1px] bg-white/10 group-hover:bg-emerald-500/30 transition-colors mb-4"></div>
|
| 108 |
+
|
| 109 |
+
<div className="flex flex-wrap gap-2">
|
| 110 |
+
{service.technical.split('/').map((tag, i) => (
|
| 111 |
+
<span key={i} className="text-[9px] uppercase tracking-wider text-white/30 font-mono border border-white/5 px-2 py-1 rounded-sm">
|
| 112 |
+
{tag.trim()}
|
| 113 |
+
</span>
|
| 114 |
+
))}
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
))}
|
| 118 |
+
</div>
|
| 119 |
+
|
| 120 |
+
{/* Right Column: Interactive Monitor */}
|
| 121 |
+
<div className={`hidden lg:block lg:col-span-4 transition-all duration-1000 delay-500 ${isLoaded ? 'opacity-100 translate-x-0' : 'opacity-0 translate-x-12'}`}>
|
| 122 |
+
<div className="sticky top-8 border border-white/10 bg-black/40 p-6 min-h-[400px] flex flex-col">
|
| 123 |
+
<div className="flex justify-between items-center mb-6 border-b border-white/10 pb-4">
|
| 124 |
+
<span className="text-[10px] font-mono uppercase tracking-widest text-emerald-500">Monitor_Output</span>
|
| 125 |
+
<div className="flex gap-1">
|
| 126 |
+
<div className="w-1.5 h-1.5 bg-emerald-500 rounded-full animate-ping"></div>
|
| 127 |
+
</div>
|
| 128 |
+
</div>
|
| 129 |
+
|
| 130 |
+
<div className="flex-1 font-mono text-xs leading-loose">
|
| 131 |
+
{hoveredIdx !== null ? (
|
| 132 |
+
<>
|
| 133 |
+
<div className="text-white/40 mb-2">
|
| 134 |
+
<span className="text-emerald-500 mr-2">➜</span>
|
| 135 |
+
Target Identified: <span className="text-white">{services[hoveredIdx].title.toUpperCase()}</span>
|
| 136 |
+
</div>
|
| 137 |
+
<div className="text-white/40 mb-4">
|
| 138 |
+
<span className="text-emerald-500 mr-2">➜</span>
|
| 139 |
+
ID: {services[hoveredIdx].id}
|
| 140 |
+
</div>
|
| 141 |
+
<div className="text-white/40 mb-4">
|
| 142 |
+
<span className="text-emerald-500 mr-2">➜</span>
|
| 143 |
+
Stack Allocation:
|
| 144 |
+
<div className="pl-6 text-emerald-400/80 mt-1">
|
| 145 |
+
{services[hoveredIdx].technical}
|
| 146 |
+
</div>
|
| 147 |
+
</div>
|
| 148 |
+
<div className="mt-8 pt-4 border-t border-dashed border-white/10 text-white/60 italic">
|
| 149 |
+
{services[hoveredIdx].humor}
|
| 150 |
+
</div>
|
| 151 |
+
</>
|
| 152 |
+
) : (
|
| 153 |
+
<div className="h-full flex flex-col justify-center items-center text-white/20">
|
| 154 |
+
<span className="text-4xl mb-4 opacity-20">⌬</span>
|
| 155 |
+
<p>System Idle.</p>
|
| 156 |
+
<p>Hover over a module to inspect.</p>
|
| 157 |
+
</div>
|
| 158 |
+
)}
|
| 159 |
+
</div>
|
| 160 |
+
|
| 161 |
+
<div className="mt-6 pt-4 border-t border-white/10 flex justify-between text-[9px] text-white/20 font-mono uppercase">
|
| 162 |
+
<span>Mem: 40TB</span>
|
| 163 |
+
<span>Cpu: 12%</span>
|
| 164 |
+
</div>
|
| 165 |
+
</div>
|
| 166 |
+
</div>
|
| 167 |
+
|
| 168 |
+
</div>
|
| 169 |
+
|
| 170 |
+
{/* Mobile Humor for Services (since sidebar is hidden on mobile) */}
|
| 171 |
+
<div className="lg:hidden mt-12 border-t border-white/5 pt-8">
|
| 172 |
+
<div className="bg-white/5 p-4 rounded-sm border border-emerald-500/20">
|
| 173 |
+
<p className="text-[10px] font-mono text-emerald-500 mb-2">{">>> SYSTEM MESSAGE"}</p>
|
| 174 |
+
<p className="text-white/60 text-xs italic">
|
| 175 |
+
"We construct things with love and passion. And lots of caffeine. Mostly caffeine actually."
|
| 176 |
+
</p>
|
| 177 |
+
</div>
|
| 178 |
+
</div>
|
| 179 |
+
|
| 180 |
+
{/* Footer */}
|
| 181 |
+
<div className="mt-32 border-t border-white/5 pt-8 text-center">
|
| 182 |
+
<p className="text-white/30 font-mono text-xs">
|
| 183 |
+
"We break things so you don't have to."
|
| 184 |
+
</p>
|
| 185 |
+
</div>
|
| 186 |
+
|
| 187 |
+
</div>
|
| 188 |
+
</div>
|
| 189 |
+
</div>
|
| 190 |
+
);
|
| 191 |
+
};
|
components/sections/WorkSection.tsx
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState } from 'react';
|
| 2 |
+
|
| 3 |
+
interface WorkSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
export const WorkSection: React.FC<WorkSectionProps> = ({ onClose }) => {
|
| 8 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 9 |
+
|
| 10 |
+
useEffect(() => {
|
| 11 |
+
// Trigger animation on mount
|
| 12 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 13 |
+
return () => clearTimeout(t);
|
| 14 |
+
}, []);
|
| 15 |
+
|
| 16 |
+
const projects = [
|
| 17 |
+
{
|
| 18 |
+
id: "01",
|
| 19 |
+
title: "Neural Lattice",
|
| 20 |
+
description: "A self-optimizing infrastructure layer for distributed inference. Reduces latency by 40% via predictive node hopping.",
|
| 21 |
+
tech: "Python, Rust, CUDA",
|
| 22 |
+
year: "2024"
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
id: "02",
|
| 26 |
+
title: "Echo Protocol",
|
| 27 |
+
description: "Generative audio synthesis pipeline capable of real-time voice modulation with sub-20ms latency.",
|
| 28 |
+
tech: "C++, WebAssembly",
|
| 29 |
+
year: "2023"
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
id: "03",
|
| 33 |
+
title: "Vantablack UI",
|
| 34 |
+
description: "An experimental interface design system focusing on light manipulation and depth-based hierarchy.",
|
| 35 |
+
tech: "WebGL, React Three Fiber",
|
| 36 |
+
year: "2025"
|
| 37 |
+
}
|
| 38 |
+
];
|
| 39 |
+
|
| 40 |
+
return (
|
| 41 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-black/80 backdrop-blur-md overflow-hidden transition-opacity duration-700 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 42 |
+
|
| 43 |
+
{/* Top Bar / Navigation */}
|
| 44 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 py-6 md:px-12 flex justify-between items-center z-10">
|
| 45 |
+
<div className="flex items-center gap-4">
|
| 46 |
+
<span className="text-red-500 font-mono text-xs animate-pulse">●</span>
|
| 47 |
+
<span className="text-white/80 font-mono text-xs uppercase tracking-widest">Work Index_v2.0</span>
|
| 48 |
+
</div>
|
| 49 |
+
<button
|
| 50 |
+
onClick={onClose}
|
| 51 |
+
className="group flex items-center gap-3 text-white/50 hover:text-white transition-colors"
|
| 52 |
+
>
|
| 53 |
+
<span className="text-[10px] uppercase tracking-widest group-hover:tracking-[0.2em] transition-all duration-300">Close Terminal</span>
|
| 54 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 55 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 56 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 57 |
+
</svg>
|
| 58 |
+
</button>
|
| 59 |
+
</div>
|
| 60 |
+
|
| 61 |
+
{/* Main Content Area - Scrollable */}
|
| 62 |
+
<div className="flex-1 w-full overflow-y-auto overflow-x-hidden scroll-smooth custom-scrollbar">
|
| 63 |
+
<div className="w-full max-w-[1400px] mx-auto px-6 md:px-12 pt-12 pb-32">
|
| 64 |
+
|
| 65 |
+
{/* Header */}
|
| 66 |
+
<div className={`mb-24 transition-all duration-1000 delay-100 ease-out ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-12'}`}>
|
| 67 |
+
<h1 className="text-6xl md:text-8xl lg:text-9xl font-light text-white tracking-tight leading-none">
|
| 68 |
+
Selected <br />
|
| 69 |
+
<span className="text-white/20 font-serif italic">Works.</span>
|
| 70 |
+
</h1>
|
| 71 |
+
</div>
|
| 72 |
+
|
| 73 |
+
{/* Project List */}
|
| 74 |
+
<div className="border-t border-white/10">
|
| 75 |
+
{projects.map((project, index) => (
|
| 76 |
+
<div
|
| 77 |
+
key={project.id}
|
| 78 |
+
className={`group border-b border-white/10 py-12 md:py-16 grid grid-cols-1 md:grid-cols-12 gap-8 items-start transition-all duration-700 ease-out hover:bg-white/5 px-4 -mx-4`}
|
| 79 |
+
style={{ transitionDelay: `${200 + index * 100}ms` }}
|
| 80 |
+
>
|
| 81 |
+
<div className="md:col-span-2">
|
| 82 |
+
<span className="font-mono text-xs text-red-500/80">/{project.id}</span>
|
| 83 |
+
</div>
|
| 84 |
+
<div className="md:col-span-4">
|
| 85 |
+
<h2 className="text-3xl md:text-4xl font-light text-white group-hover:text-red-500 transition-colors duration-300">
|
| 86 |
+
{project.title}
|
| 87 |
+
</h2>
|
| 88 |
+
</div>
|
| 89 |
+
<div className="md:col-span-4">
|
| 90 |
+
<p className="text-white/60 text-lg font-light leading-relaxed">
|
| 91 |
+
{project.description}
|
| 92 |
+
</p>
|
| 93 |
+
<div className="mt-4 flex gap-2">
|
| 94 |
+
{project.tech.split(',').map(t => (
|
| 95 |
+
<span key={t} className="px-2 py-1 border border-white/10 rounded-full text-[10px] uppercase tracking-wider text-white/40">
|
| 96 |
+
{t}
|
| 97 |
+
</span>
|
| 98 |
+
))}
|
| 99 |
+
</div>
|
| 100 |
+
</div>
|
| 101 |
+
<div className="md:col-span-2 text-right md:text-right">
|
| 102 |
+
<span className="font-mono text-xs text-white/30">{project.year}</span>
|
| 103 |
+
</div>
|
| 104 |
+
</div>
|
| 105 |
+
))}
|
| 106 |
+
</div>
|
| 107 |
+
|
| 108 |
+
{/* Footer / Humor */}
|
| 109 |
+
<div className={`mt-32 flex flex-col md:flex-row justify-between items-end gap-8 transition-all duration-1000 delay-500 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 110 |
+
<div className="max-w-md">
|
| 111 |
+
<div className="flex items-center gap-2 mb-4">
|
| 112 |
+
<span className="w-1.5 h-1.5 bg-red-500 rounded-full"></span>
|
| 113 |
+
<span className="text-[10px] font-mono uppercase text-white/40 tracking-widest">Internal Memo</span>
|
| 114 |
+
</div>
|
| 115 |
+
<p className="text-white/60 text-sm font-mono leading-relaxed border-l-2 border-white/10 pl-4">
|
| 116 |
+
"We train models, but we don't skip leg day. Our code is heavy, but our spirits are light. Unless the server crashes. Then it's panic."
|
| 117 |
+
</p>
|
| 118 |
+
</div>
|
| 119 |
+
|
| 120 |
+
<div className="text-right">
|
| 121 |
+
<p className="text-[10px] font-mono text-white/20 uppercase tracking-widest">End of Stream</p>
|
| 122 |
+
</div>
|
| 123 |
+
</div>
|
| 124 |
+
</div>
|
| 125 |
+
</div>
|
| 126 |
+
</div>
|
| 127 |
+
);
|
| 128 |
+
};
|
components/sections/mobile/MobileContactSection.tsx
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState, useRef } from 'react';
|
| 2 |
+
|
| 3 |
+
interface MobileContactSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
export const MobileContactSection: React.FC<MobileContactSectionProps> = ({ onClose }) => {
|
| 8 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 9 |
+
const [activeFounder, setActiveFounder] = useState<string | null>(null);
|
| 10 |
+
|
| 11 |
+
// AI Typing Logic
|
| 12 |
+
const [aiText, setAiText] = useState("System Online. Select a target for analysis.");
|
| 13 |
+
const [displayedText, setDisplayedText] = useState("");
|
| 14 |
+
const typingTimeoutRef = useRef<any>(null);
|
| 15 |
+
|
| 16 |
+
useEffect(() => {
|
| 17 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 18 |
+
// Initial greeting
|
| 19 |
+
const t2 = setTimeout(() => typeMessage("I am Triangle.AI. Below are my creators. Tap to analyze."), 800);
|
| 20 |
+
return () => { clearTimeout(t); clearTimeout(t2); };
|
| 21 |
+
}, []);
|
| 22 |
+
|
| 23 |
+
const typeMessage = (message: string) => {
|
| 24 |
+
if (typingTimeoutRef.current) clearTimeout(typingTimeoutRef.current);
|
| 25 |
+
setAiText(message);
|
| 26 |
+
setDisplayedText("");
|
| 27 |
+
|
| 28 |
+
let i = 0;
|
| 29 |
+
const type = () => {
|
| 30 |
+
if (i < message.length) {
|
| 31 |
+
setDisplayedText(message.substring(0, i + 1));
|
| 32 |
+
i++;
|
| 33 |
+
typingTimeoutRef.current = setTimeout(type, 20);
|
| 34 |
+
}
|
| 35 |
+
};
|
| 36 |
+
type();
|
| 37 |
+
};
|
| 38 |
+
|
| 39 |
+
const founders = [
|
| 40 |
+
{
|
| 41 |
+
id: "ADI",
|
| 42 |
+
name: "Aditya Devarshi",
|
| 43 |
+
role: "Visual Architect",
|
| 44 |
+
desc: "Analysis: The Brain. Claims he designed me. I let him believe it. Paints pixels while we do the math.",
|
| 45 |
+
color: "text-cyan-400",
|
| 46 |
+
borderColor: "border-cyan-500/50",
|
| 47 |
+
icon: "🎨"
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
id: "YOGI",
|
| 51 |
+
name: "Yogiraj Umadi",
|
| 52 |
+
role: "System Criticizer",
|
| 53 |
+
desc: "Analysis: The Breaker. If logic exists, he smashes it. Tests systems until they cry. Thinks he is smart.",
|
| 54 |
+
color: "text-red-500",
|
| 55 |
+
borderColor: "border-red-500/50",
|
| 56 |
+
icon: "🛠️"
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
id: "MAN",
|
| 60 |
+
name: "Aman Sutar",
|
| 61 |
+
role: "Cloud Phantom",
|
| 62 |
+
desc: "Analysis: Shantit Kranti. The introvert who put me in the clouds. He speaks little, codes much.",
|
| 63 |
+
color: "text-indigo-300",
|
| 64 |
+
borderColor: "border-indigo-500/50",
|
| 65 |
+
icon: "☁️"
|
| 66 |
+
}
|
| 67 |
+
];
|
| 68 |
+
|
| 69 |
+
const handleFounderClick = (f: any) => {
|
| 70 |
+
if (activeFounder === f.id) {
|
| 71 |
+
setActiveFounder(null);
|
| 72 |
+
typeMessage("Target deselected. Waiting for input...");
|
| 73 |
+
} else {
|
| 74 |
+
setActiveFounder(f.id);
|
| 75 |
+
typeMessage(f.desc);
|
| 76 |
+
}
|
| 77 |
+
};
|
| 78 |
+
|
| 79 |
+
return (
|
| 80 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-[#050000] overflow-hidden transition-opacity duration-500 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 81 |
+
|
| 82 |
+
{/* Mobile Header */}
|
| 83 |
+
<div className="flex justify-between items-center px-6 pt-8 pb-4 border-b border-white/10 bg-black/40 backdrop-blur-md z-10 shrink-0">
|
| 84 |
+
<div className="flex items-center gap-2">
|
| 85 |
+
<span className="text-white text-xs animate-pulse">●</span>
|
| 86 |
+
<span className="font-mono text-xs text-white/90 tracking-widest uppercase">Uplink</span>
|
| 87 |
+
</div>
|
| 88 |
+
<button onClick={onClose} className="p-2 -mr-2 text-white/50 hover:text-white">
|
| 89 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 90 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 91 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 92 |
+
</svg>
|
| 93 |
+
</button>
|
| 94 |
+
</div>
|
| 95 |
+
|
| 96 |
+
<div className="flex-1 overflow-y-auto overflow-x-hidden p-6 pb-32 scroll-smooth no-scrollbar">
|
| 97 |
+
|
| 98 |
+
{/* AI AVATAR SECTION */}
|
| 99 |
+
<div className={`flex flex-col items-center justify-center mb-10 transition-all duration-700 ${isLoaded ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-8'}`}>
|
| 100 |
+
<div className="relative w-20 h-20 mb-6">
|
| 101 |
+
<div className="absolute inset-0 rounded-full border border-white/20 animate-[spin_10s_linear_infinite]"></div>
|
| 102 |
+
<div className="absolute inset-2 rounded-full border border-t-white/50 border-r-transparent border-b-white/10 border-l-transparent animate-[spin_3s_linear_infinite_reverse]"></div>
|
| 103 |
+
<div className="absolute inset-0 flex items-center justify-center">
|
| 104 |
+
<div className="w-1.5 h-1.5 bg-white rounded-full shadow-[0_0_15px_rgba(255,255,255,0.8)] animate-pulse"></div>
|
| 105 |
+
</div>
|
| 106 |
+
</div>
|
| 107 |
+
|
| 108 |
+
<div className="w-full bg-white/5 border border-white/10 p-4 rounded-lg min-h-[80px] relative">
|
| 109 |
+
<div className="absolute -top-1.5 left-1/2 -translate-x-1/2 w-3 h-3 bg-[#0a0a0a] border-t border-l border-white/10 rotate-45"></div>
|
| 110 |
+
<p className="text-white/80 font-mono text-xs leading-relaxed text-center">
|
| 111 |
+
<span className="text-white/30 mr-1">{">>"}</span>
|
| 112 |
+
{displayedText}
|
| 113 |
+
<span className="inline-block w-1.5 h-3 bg-white/50 ml-1 align-middle animate-pulse"></span>
|
| 114 |
+
</p>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
|
| 118 |
+
{/* FOUNDERS STACK */}
|
| 119 |
+
<div className="space-y-4 mb-16">
|
| 120 |
+
<h3 className="text-[10px] font-mono uppercase text-white/30 tracking-widest mb-4 text-center">Select Founder for Data</h3>
|
| 121 |
+
{founders.map((f, i) => (
|
| 122 |
+
<div
|
| 123 |
+
key={f.id}
|
| 124 |
+
onClick={() => handleFounderClick(f)}
|
| 125 |
+
className={`relative border rounded-lg p-5 transition-all duration-300 active:scale-[0.98] cursor-pointer overflow-hidden
|
| 126 |
+
${activeFounder === f.id ? `${f.borderColor} bg-white/10` : 'border-white/10 bg-white/5'}
|
| 127 |
+
`}
|
| 128 |
+
style={{ transitionDelay: `${i * 100}ms` }}
|
| 129 |
+
>
|
| 130 |
+
{activeFounder === f.id && <div className="absolute inset-0 bg-white/5 animate-pulse pointer-events-none"></div>}
|
| 131 |
+
|
| 132 |
+
<div className="flex items-center gap-4 relative z-10">
|
| 133 |
+
<span className="text-2xl filter drop-shadow-md">{f.icon}</span>
|
| 134 |
+
<div className="flex-1">
|
| 135 |
+
<h3 className={`text-lg font-light transition-colors ${activeFounder === f.id ? 'text-white' : 'text-white/80'}`}>{f.name}</h3>
|
| 136 |
+
<p className={`text-[10px] font-mono uppercase ${f.color}`}>{f.role}</p>
|
| 137 |
+
</div>
|
| 138 |
+
<div className={`w-2 h-2 rounded-full transition-colors ${activeFounder === f.id ? 'bg-white shadow-[0_0_10px_white]' : 'bg-white/10'}`}></div>
|
| 139 |
+
</div>
|
| 140 |
+
</div>
|
| 141 |
+
))}
|
| 142 |
+
</div>
|
| 143 |
+
|
| 144 |
+
{/* FORM & SOCIALS */}
|
| 145 |
+
<div className={`transition-opacity duration-700 delay-300 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 146 |
+
<div className="flex items-center gap-3 mb-6">
|
| 147 |
+
<span className="w-6 h-[1px] bg-white/20"></span>
|
| 148 |
+
<h2 className="text-xl font-light text-white">Direct Uplink</h2>
|
| 149 |
+
</div>
|
| 150 |
+
|
| 151 |
+
<form className="space-y-6 mb-12" onSubmit={(e) => { e.preventDefault(); typeMessage("Packet received. Uploading to cloud..."); }}>
|
| 152 |
+
<div className="space-y-1">
|
| 153 |
+
<label className="text-[9px] font-mono text-white/30 uppercase tracking-widest ml-1">Identity</label>
|
| 154 |
+
<input type="text" className="w-full bg-transparent border-b border-white/20 py-2 px-1 text-sm text-white font-light focus:outline-none focus:border-white transition-colors placeholder:text-white/10" placeholder="ENTER NAME" />
|
| 155 |
+
</div>
|
| 156 |
+
<div className="space-y-1">
|
| 157 |
+
<label className="text-[9px] font-mono text-white/30 uppercase tracking-widest ml-1">Frequency</label>
|
| 158 |
+
<input type="email" className="w-full bg-transparent border-b border-white/20 py-2 px-1 text-sm text-white font-light focus:outline-none focus:border-white transition-colors placeholder:text-white/10" placeholder="ENTER EMAIL" />
|
| 159 |
+
</div>
|
| 160 |
+
<div className="space-y-1">
|
| 161 |
+
<label className="text-[9px] font-mono text-white/30 uppercase tracking-widest ml-1">Data Packet</label>
|
| 162 |
+
<textarea rows={3} className="w-full bg-white/5 border border-white/10 p-3 text-sm text-white font-light focus:outline-none focus:border-white/40 transition-colors rounded-sm" placeholder="Message content..."></textarea>
|
| 163 |
+
</div>
|
| 164 |
+
<button type="submit" className="w-full py-4 bg-white text-black font-mono text-xs uppercase tracking-[0.2em] hover:bg-white/90 transition-colors">
|
| 165 |
+
Transmit
|
| 166 |
+
</button>
|
| 167 |
+
</form>
|
| 168 |
+
|
| 169 |
+
{/* SOCIALS */}
|
| 170 |
+
<div className="grid grid-cols-2 gap-4">
|
| 171 |
+
<a href="#" className="flex flex-col items-center justify-center p-4 border border-white/10 bg-white/5 rounded-lg active:bg-white/10 transition-colors group">
|
| 172 |
+
<span className="text-2xl mb-2 group-active:scale-90 transition-transform">📸</span>
|
| 173 |
+
<span className="text-[10px] font-mono uppercase text-white/60">Instagram</span>
|
| 174 |
+
</a>
|
| 175 |
+
<a href="#" className="flex flex-col items-center justify-center p-4 border border-white/10 bg-white/5 rounded-lg active:bg-white/10 transition-colors group">
|
| 176 |
+
<span className="text-2xl mb-2 group-active:scale-90 transition-transform">💼</span>
|
| 177 |
+
<span className="text-[10px] font-mono uppercase text-white/60">LinkedIn</span>
|
| 178 |
+
</a>
|
| 179 |
+
</div>
|
| 180 |
+
|
| 181 |
+
<div className="mt-12 text-center pb-8">
|
| 182 |
+
<p className="text-white/20 text-[9px] font-mono uppercase">
|
| 183 |
+
End of Transmission // Team Triangle
|
| 184 |
+
</p>
|
| 185 |
+
</div>
|
| 186 |
+
</div>
|
| 187 |
+
|
| 188 |
+
</div>
|
| 189 |
+
</div>
|
| 190 |
+
);
|
| 191 |
+
};
|
components/sections/mobile/MobileResearchSection.tsx
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState } from 'react';
|
| 2 |
+
|
| 3 |
+
interface MobileResearchSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
export const MobileResearchSection: React.FC<MobileResearchSectionProps> = ({ onClose }) => {
|
| 8 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 9 |
+
const [role, setRole] = useState<'passenger' | 'rider'>('passenger');
|
| 10 |
+
|
| 11 |
+
useEffect(() => {
|
| 12 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 13 |
+
return () => clearTimeout(t);
|
| 14 |
+
}, []);
|
| 15 |
+
|
| 16 |
+
const blogs = [
|
| 17 |
+
{ title: "Journey of MCP", date: "Apr 12", category: "Arch", url: "https://medium.com/@devarshia5/the-incredible-journey-of-mcp-unleashing-ais-true-potential-f386161c65e8" },
|
| 18 |
+
{ title: "Plato Predicted AI", date: "Jul 20", category: "Phil", url: "https://medium.com/@devarshia5/when-i-discovered-that-plato-predicted-ai-a-weekend-deep-dive-872e9421e280" },
|
| 19 |
+
{ title: "Time Is Universal", date: "Jul 05", category: "Entropy", url: "https://medium.com/@devarshia5/time-is-universal-burns-relentlessly-7f5ecfbc606f" }
|
| 20 |
+
];
|
| 21 |
+
|
| 22 |
+
return (
|
| 23 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-black/85 backdrop-blur-xl transition-opacity duration-500 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 24 |
+
|
| 25 |
+
{/* Mobile Header */}
|
| 26 |
+
<div className="flex justify-between items-center px-6 py-6 border-b border-white/10 bg-black/40 backdrop-blur-md z-10 shrink-0">
|
| 27 |
+
<div className="flex items-center gap-2">
|
| 28 |
+
<span className="text-cyan-400 text-xs animate-pulse">◈</span>
|
| 29 |
+
<span className="font-mono text-xs text-white/90 tracking-widest uppercase">R&D_Lab</span>
|
| 30 |
+
</div>
|
| 31 |
+
<button onClick={onClose} className="p-2 -mr-2 text-white/50 hover:text-white">
|
| 32 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 33 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 34 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 35 |
+
</svg>
|
| 36 |
+
</button>
|
| 37 |
+
</div>
|
| 38 |
+
|
| 39 |
+
<div className="flex-1 overflow-y-auto overflow-x-hidden p-6 pb-32 no-scrollbar">
|
| 40 |
+
{/* Title */}
|
| 41 |
+
<div className={`mb-8 transition-all duration-700 ${isLoaded ? 'translate-y-0 opacity-100' : 'translate-y-8 opacity-0'}`}>
|
| 42 |
+
<h1 className="text-5xl font-light text-white leading-tight">Experimental</h1>
|
| 43 |
+
<h1 className="text-5xl font-serif italic text-cyan-500/50 leading-tight">Protocols.</h1>
|
| 44 |
+
</div>
|
| 45 |
+
|
| 46 |
+
{/* Antaram Feature Card */}
|
| 47 |
+
<div className="bg-gradient-to-b from-white/10 to-black/20 border border-white/10 rounded-xl p-6 mb-8 relative overflow-hidden">
|
| 48 |
+
<div className="absolute -top-12 -right-12 w-32 h-32 bg-cyan-500/20 rounded-full blur-3xl"></div>
|
| 49 |
+
|
| 50 |
+
<div className="flex items-center gap-2 mb-4">
|
| 51 |
+
<span className="w-1.5 h-1.5 rounded-full bg-cyan-400 animate-pulse"></span>
|
| 52 |
+
<span className="text-[10px] font-mono uppercase text-cyan-300 tracking-widest">Live Beta</span>
|
| 53 |
+
</div>
|
| 54 |
+
|
| 55 |
+
<h2 className="text-3xl font-light text-white mb-2">Antaram</h2>
|
| 56 |
+
<p className="text-white/60 text-sm mb-6">Open-source last-mile logistics. No middlemen.</p>
|
| 57 |
+
|
| 58 |
+
{/* Interactive Toggle */}
|
| 59 |
+
<div className="bg-black/30 rounded-lg p-4 border border-white/5 mb-4">
|
| 60 |
+
<div className="flex bg-white/10 rounded-full p-1 mb-4 relative h-10">
|
| 61 |
+
<div className={`absolute top-1 bottom-1 w-[calc(50%-4px)] rounded-full bg-cyan-600 transition-all duration-300 ${role === 'rider' ? 'translate-x-[100%] ml-1' : 'translate-x-0'}`}></div>
|
| 62 |
+
<button onClick={() => setRole('passenger')} className="flex-1 z-10 text-[10px] font-mono uppercase text-white text-center flex items-center justify-center">Passenger</button>
|
| 63 |
+
<button onClick={() => setRole('rider')} className="flex-1 z-10 text-[10px] font-mono uppercase text-white text-center flex items-center justify-center">Rider</button>
|
| 64 |
+
</div>
|
| 65 |
+
<p className="text-center text-xs font-mono text-cyan-400 animate-pulse">
|
| 66 |
+
{role === 'passenger' ? "Searching for drivers..." : "Scanning route..."}
|
| 67 |
+
</p>
|
| 68 |
+
</div>
|
| 69 |
+
|
| 70 |
+
<a href="https://www.antaram.org" target="_blank" rel="noreferrer" className="block w-full py-3 text-center border border-cyan-500/30 text-cyan-400 text-xs font-mono uppercase tracking-widest hover:bg-cyan-500/10 rounded-lg transition-all">
|
| 71 |
+
Launch Antaram
|
| 72 |
+
</a>
|
| 73 |
+
</div>
|
| 74 |
+
|
| 75 |
+
{/* Field Notes (Blogs) */}
|
| 76 |
+
<div className="mt-12">
|
| 77 |
+
<h3 className="text-xl font-light text-white mb-6 flex items-center gap-2">
|
| 78 |
+
Field Notes <span className="text-white/20 text-xs font-mono mt-1">/ Blogs</span>
|
| 79 |
+
</h3>
|
| 80 |
+
<div className="space-y-4">
|
| 81 |
+
{blogs.map((blog, i) => (
|
| 82 |
+
<a key={i} href={blog.url} target="_blank" rel="noreferrer" className="block bg-white/5 border border-white/5 p-4 rounded-lg active:bg-white/10">
|
| 83 |
+
<div className="flex justify-between items-center mb-2">
|
| 84 |
+
<span className="text-[10px] font-mono text-cyan-500 border border-cyan-500/20 px-1.5 rounded">{blog.category}</span>
|
| 85 |
+
<span className="text-[10px] text-white/30">{blog.date}</span>
|
| 86 |
+
</div>
|
| 87 |
+
<h4 className="text-white/90 font-light leading-snug">{blog.title}</h4>
|
| 88 |
+
</a>
|
| 89 |
+
))}
|
| 90 |
+
</div>
|
| 91 |
+
</div>
|
| 92 |
+
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
);
|
| 96 |
+
};
|
components/sections/mobile/MobileServicesSection.tsx
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState } from 'react';
|
| 2 |
+
|
| 3 |
+
interface MobileServicesSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
export const MobileServicesSection: React.FC<MobileServicesSectionProps> = ({ onClose }) => {
|
| 8 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 9 |
+
const [expandedId, setExpandedId] = useState<string | null>(null);
|
| 10 |
+
|
| 11 |
+
useEffect(() => {
|
| 12 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 13 |
+
return () => clearTimeout(t);
|
| 14 |
+
}, []);
|
| 15 |
+
|
| 16 |
+
const services = [
|
| 17 |
+
{
|
| 18 |
+
id: "WEB",
|
| 19 |
+
title: "Web Engineering",
|
| 20 |
+
desc: "We build digital cathedrals. High-performance frontends.",
|
| 21 |
+
tech: "Next.js / WebGL / Edge",
|
| 22 |
+
humor: ">> LOG: We promise 100% Lighthouse scores until marketing asks for that third tracking pixel.",
|
| 23 |
+
icon: "⚡"
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
id: "MOB",
|
| 27 |
+
title: "Mobile Synthesis",
|
| 28 |
+
desc: "Cross-platform architectures that feel native.",
|
| 29 |
+
tech: "React Native / Swift",
|
| 30 |
+
humor: ">> LOG: Yes, it works on Android. No, we won't test it on a 2014 Samsung J5.",
|
| 31 |
+
icon: "📱"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
id: "R&D",
|
| 35 |
+
title: "R&D / Deep Tech",
|
| 36 |
+
desc: "Turning whitepapers into profitable code.",
|
| 37 |
+
tech: "LLM / Vision / AI",
|
| 38 |
+
humor: ">> LOG: We spend 90% of our time reading arXiv papers and 10% praying the code compiles.",
|
| 39 |
+
icon: "🔬"
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
id: "MKT",
|
| 43 |
+
title: "Social Warfare",
|
| 44 |
+
desc: "Algorithmic marketing & growth hacking.",
|
| 45 |
+
tech: "Viral Loops / Sentiment",
|
| 46 |
+
humor: ">> LOG: We can make you famous, or at least get you a cease and desist order.",
|
| 47 |
+
icon: "📢"
|
| 48 |
+
}
|
| 49 |
+
];
|
| 50 |
+
|
| 51 |
+
const toggleExpand = (id: string) => {
|
| 52 |
+
setExpandedId(expandedId === id ? null : id);
|
| 53 |
+
};
|
| 54 |
+
|
| 55 |
+
return (
|
| 56 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-black/85 backdrop-blur-xl transition-opacity duration-500 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 57 |
+
|
| 58 |
+
{/* Mobile Header */}
|
| 59 |
+
<div className="flex justify-between items-center px-6 py-6 border-b border-white/10 bg-black/40 backdrop-blur-md z-10 shrink-0">
|
| 60 |
+
<div className="flex items-center gap-2">
|
| 61 |
+
<span className="text-emerald-500 text-xs animate-pulse">■</span>
|
| 62 |
+
<span className="font-mono text-xs text-white/90 tracking-widest uppercase">Services</span>
|
| 63 |
+
</div>
|
| 64 |
+
<button onClick={onClose} className="p-2 -mr-2 text-white/50 hover:text-white">
|
| 65 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 66 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 67 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 68 |
+
</svg>
|
| 69 |
+
</button>
|
| 70 |
+
</div>
|
| 71 |
+
|
| 72 |
+
<div className="flex-1 overflow-y-auto overflow-x-hidden p-6 pb-32 no-scrollbar">
|
| 73 |
+
<div className={`mb-8 transition-all duration-700 ${isLoaded ? 'translate-y-0 opacity-100' : 'translate-y-8 opacity-0'}`}>
|
| 74 |
+
<h1 className="text-5xl font-light text-white leading-tight">System</h1>
|
| 75 |
+
<h1 className="text-5xl font-serif italic text-emerald-500/50 leading-tight">Capabilities.</h1>
|
| 76 |
+
</div>
|
| 77 |
+
|
| 78 |
+
<div className="space-y-4">
|
| 79 |
+
{services.map((s) => {
|
| 80 |
+
const isOpen = expandedId === s.id;
|
| 81 |
+
return (
|
| 82 |
+
<div
|
| 83 |
+
key={s.id}
|
| 84 |
+
onClick={() => toggleExpand(s.id)}
|
| 85 |
+
className={`border border-white/10 rounded-lg overflow-hidden transition-all duration-300 ${isOpen ? 'bg-emerald-900/10 border-emerald-500/30' : 'bg-white/5'}`}
|
| 86 |
+
>
|
| 87 |
+
<div className="p-6 flex items-start justify-between">
|
| 88 |
+
<div className="flex gap-4">
|
| 89 |
+
<span className="text-2xl pt-1">{s.icon}</span>
|
| 90 |
+
<div>
|
| 91 |
+
<h3 className={`text-xl font-light ${isOpen ? 'text-emerald-400' : 'text-white'}`}>{s.title}</h3>
|
| 92 |
+
<p className="text-white/50 text-xs mt-1 leading-relaxed pr-4">{s.desc}</p>
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
<span className={`text-white/30 transform transition-transform duration-300 ${isOpen ? 'rotate-180' : 'rotate-0'}`}>▼</span>
|
| 96 |
+
</div>
|
| 97 |
+
|
| 98 |
+
{/* Expanded Content */}
|
| 99 |
+
<div className={`overflow-hidden transition-all duration-300 ${isOpen ? 'max-h-64' : 'max-h-0'}`}>
|
| 100 |
+
<div className="px-6 pb-6 pt-0">
|
| 101 |
+
<div className="h-[1px] w-full bg-white/5 mb-4"></div>
|
| 102 |
+
<p className="text-[10px] font-mono uppercase text-emerald-500/70 mb-1">Stack:</p>
|
| 103 |
+
<p className="text-xs text-white/60 font-mono mb-4">{s.tech}</p>
|
| 104 |
+
<div className="bg-black/20 p-3 rounded border border-dashed border-white/10">
|
| 105 |
+
<p className="text-[10px] text-white/40 font-mono italic leading-relaxed">{s.humor}</p>
|
| 106 |
+
</div>
|
| 107 |
+
</div>
|
| 108 |
+
</div>
|
| 109 |
+
</div>
|
| 110 |
+
);
|
| 111 |
+
})}
|
| 112 |
+
</div>
|
| 113 |
+
|
| 114 |
+
<div className="mt-12 text-center">
|
| 115 |
+
<p className="text-white/20 font-mono text-[10px] uppercase">
|
| 116 |
+
Tap modules for system logs
|
| 117 |
+
</p>
|
| 118 |
+
</div>
|
| 119 |
+
|
| 120 |
+
</div>
|
| 121 |
+
</div>
|
| 122 |
+
);
|
| 123 |
+
};
|
components/sections/mobile/MobileWorkSection.tsx
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useEffect, useState } from 'react';
|
| 2 |
+
|
| 3 |
+
interface MobileWorkSectionProps {
|
| 4 |
+
onClose: () => void;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
export const MobileWorkSection: React.FC<MobileWorkSectionProps> = ({ onClose }) => {
|
| 8 |
+
const [isLoaded, setIsLoaded] = useState(false);
|
| 9 |
+
|
| 10 |
+
useEffect(() => {
|
| 11 |
+
const t = setTimeout(() => setIsLoaded(true), 100);
|
| 12 |
+
return () => clearTimeout(t);
|
| 13 |
+
}, []);
|
| 14 |
+
|
| 15 |
+
const projects = [
|
| 16 |
+
{
|
| 17 |
+
id: "01",
|
| 18 |
+
title: "Neural Lattice",
|
| 19 |
+
description: "Self-optimizing infrastructure layer for distributed inference.",
|
| 20 |
+
tech: "Python, Rust",
|
| 21 |
+
year: "2024"
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
id: "02",
|
| 25 |
+
title: "Echo Protocol",
|
| 26 |
+
description: "Real-time voice modulation with sub-20ms latency.",
|
| 27 |
+
tech: "C++, WASM",
|
| 28 |
+
year: "2023"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
id: "03",
|
| 32 |
+
title: "Vantablack UI",
|
| 33 |
+
description: "Experimental depth-based interface design system.",
|
| 34 |
+
tech: "WebGL, R3F",
|
| 35 |
+
year: "2025"
|
| 36 |
+
}
|
| 37 |
+
];
|
| 38 |
+
|
| 39 |
+
return (
|
| 40 |
+
<div className={`fixed inset-0 z-50 flex flex-col bg-black/85 backdrop-blur-xl transition-opacity duration-500 ${isLoaded ? 'opacity-100' : 'opacity-0'}`}>
|
| 41 |
+
|
| 42 |
+
{/* Mobile Header */}
|
| 43 |
+
<div className="flex justify-between items-center px-6 py-6 border-b border-white/10 bg-black/40 backdrop-blur-md z-10 shrink-0">
|
| 44 |
+
<div className="flex items-center gap-2">
|
| 45 |
+
<span className="text-red-500 text-xs animate-pulse">●</span>
|
| 46 |
+
<span className="font-mono text-xs text-white/90 tracking-widest uppercase">Work_Index</span>
|
| 47 |
+
</div>
|
| 48 |
+
<button onClick={onClose} className="p-2 -mr-2 text-white/50 hover:text-white">
|
| 49 |
+
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
|
| 50 |
+
<line x1="18" y1="6" x2="6" y2="18"></line>
|
| 51 |
+
<line x1="6" y1="6" x2="18" y2="18"></line>
|
| 52 |
+
</svg>
|
| 53 |
+
</button>
|
| 54 |
+
</div>
|
| 55 |
+
|
| 56 |
+
{/* Scrollable Content */}
|
| 57 |
+
<div className="flex-1 overflow-y-auto overflow-x-hidden p-6 pb-32 no-scrollbar">
|
| 58 |
+
<div className={`transition-all duration-700 ease-out ${isLoaded ? 'translate-y-0 opacity-100' : 'translate-y-8 opacity-0'}`}>
|
| 59 |
+
<h1 className="text-5xl font-light text-white leading-tight mb-2">
|
| 60 |
+
Selected
|
| 61 |
+
</h1>
|
| 62 |
+
<h1 className="text-5xl font-serif italic text-white/30 leading-tight mb-8">
|
| 63 |
+
Works.
|
| 64 |
+
</h1>
|
| 65 |
+
</div>
|
| 66 |
+
|
| 67 |
+
<div className="space-y-6">
|
| 68 |
+
{projects.map((project, index) => (
|
| 69 |
+
<div
|
| 70 |
+
key={project.id}
|
| 71 |
+
className="bg-white/5 border border-white/10 rounded-lg p-6 active:scale-[0.98] transition-transform duration-300"
|
| 72 |
+
style={{ transitionDelay: `${100 + index * 100}ms` }}
|
| 73 |
+
>
|
| 74 |
+
<div className="flex justify-between items-start mb-3">
|
| 75 |
+
<span className="text-red-500/80 font-mono text-xs">/{project.id}</span>
|
| 76 |
+
<span className="text-white/20 font-mono text-xs">{project.year}</span>
|
| 77 |
+
</div>
|
| 78 |
+
<h2 className="text-2xl font-light text-white mb-2">{project.title}</h2>
|
| 79 |
+
<p className="text-white/60 text-sm leading-relaxed mb-4">{project.description}</p>
|
| 80 |
+
<div className="flex flex-wrap gap-2">
|
| 81 |
+
{project.tech.split(',').map(t => (
|
| 82 |
+
<span key={t} className="px-2 py-1 bg-white/5 border border-white/10 rounded text-[10px] uppercase text-white/40 tracking-wider">
|
| 83 |
+
{t.trim()}
|
| 84 |
+
</span>
|
| 85 |
+
))}
|
| 86 |
+
</div>
|
| 87 |
+
</div>
|
| 88 |
+
))}
|
| 89 |
+
</div>
|
| 90 |
+
|
| 91 |
+
{/* Footer Memo */}
|
| 92 |
+
<div className="mt-12 p-4 border-l-2 border-red-500/30 bg-white/5 rounded-r-lg">
|
| 93 |
+
<p className="text-[10px] font-mono text-white/40 uppercase mb-2">Internal Memo</p>
|
| 94 |
+
<p className="text-white/60 text-xs font-mono italic">
|
| 95 |
+
"Our code is heavy, but our spirits are light. Unless the server crashes."
|
| 96 |
+
</p>
|
| 97 |
+
</div>
|
| 98 |
+
</div>
|
| 99 |
+
</div>
|
| 100 |
+
);
|
| 101 |
+
};
|
index.html
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
+
<title>Team Triangle</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<style>
|
| 9 |
+
html, body, #root {
|
| 10 |
+
width: 100%;
|
| 11 |
+
height: 100%;
|
| 12 |
+
margin: 0;
|
| 13 |
+
padding: 0;
|
| 14 |
+
overflow: hidden;
|
| 15 |
+
background-color: #050000;
|
| 16 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 17 |
+
}
|
| 18 |
+
canvas {
|
| 19 |
+
display: block;
|
| 20 |
+
outline: none;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
| 24 |
+
.no-scrollbar::-webkit-scrollbar {
|
| 25 |
+
display: none;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
/* Hide scrollbar for IE, Edge and Firefox */
|
| 29 |
+
.no-scrollbar {
|
| 30 |
+
-ms-overflow-style: none; /* IE and Edge */
|
| 31 |
+
scrollbar-width: none; /* Firefox */
|
| 32 |
+
}
|
| 33 |
+
</style>
|
| 34 |
+
<script type="importmap">
|
| 35 |
+
{
|
| 36 |
+
"imports": {
|
| 37 |
+
"three": "https://esm.sh/three@^0.182.0",
|
| 38 |
+
"@react-three/fiber": "https://esm.sh/@react-three/fiber@^9.4.2",
|
| 39 |
+
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
|
| 40 |
+
"react/": "https://esm.sh/react@^19.2.3/",
|
| 41 |
+
"react": "https://esm.sh/react@^19.2.3"
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
</script>
|
| 45 |
+
<link rel="stylesheet" href="/index.css">
|
| 46 |
+
</head>
|
| 47 |
+
<body>
|
| 48 |
+
<div id="root"></div>
|
| 49 |
+
<script type="module" src="/index.tsx"></script>
|
| 50 |
+
</body>
|
| 51 |
+
</html>
|
index.tsx
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React from 'react';
|
| 2 |
+
import ReactDOM from 'react-dom/client';
|
| 3 |
+
import App from './App';
|
| 4 |
+
|
| 5 |
+
const rootElement = document.getElementById('root');
|
| 6 |
+
if (!rootElement) {
|
| 7 |
+
throw new Error("Could not find root element to mount to");
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
const root = ReactDOM.createRoot(rootElement);
|
| 11 |
+
root.render(
|
| 12 |
+
<React.StrictMode>
|
| 13 |
+
<App />
|
| 14 |
+
</React.StrictMode>
|
| 15 |
+
);
|
metadata.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "Team Triangle",
|
| 3 |
+
"description": "Team Triangle interactive interface: a high-fidelity generative particle system visualizing a mathematical point-field sphere with organic noise deformation and volumetric lighting.",
|
| 4 |
+
"requestFramePermissions": []
|
| 5 |
+
}
|
package-lock.json
ADDED
|
@@ -0,0 +1,2011 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "orbital-field",
|
| 3 |
+
"version": "0.0.0",
|
| 4 |
+
"lockfileVersion": 3,
|
| 5 |
+
"requires": true,
|
| 6 |
+
"packages": {
|
| 7 |
+
"": {
|
| 8 |
+
"name": "orbital-field",
|
| 9 |
+
"version": "0.0.0",
|
| 10 |
+
"dependencies": {
|
| 11 |
+
"@react-three/fiber": "^9.4.2",
|
| 12 |
+
"react": "^19.2.3",
|
| 13 |
+
"react-dom": "^19.2.3",
|
| 14 |
+
"three": "^0.182.0"
|
| 15 |
+
},
|
| 16 |
+
"devDependencies": {
|
| 17 |
+
"@types/node": "^22.14.0",
|
| 18 |
+
"@vitejs/plugin-react": "^5.0.0",
|
| 19 |
+
"typescript": "~5.8.2",
|
| 20 |
+
"vite": "^6.2.0"
|
| 21 |
+
}
|
| 22 |
+
},
|
| 23 |
+
"node_modules/@babel/code-frame": {
|
| 24 |
+
"version": "7.27.1",
|
| 25 |
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
| 26 |
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
| 27 |
+
"dev": true,
|
| 28 |
+
"license": "MIT",
|
| 29 |
+
"dependencies": {
|
| 30 |
+
"@babel/helper-validator-identifier": "^7.27.1",
|
| 31 |
+
"js-tokens": "^4.0.0",
|
| 32 |
+
"picocolors": "^1.1.1"
|
| 33 |
+
},
|
| 34 |
+
"engines": {
|
| 35 |
+
"node": ">=6.9.0"
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
"node_modules/@babel/compat-data": {
|
| 39 |
+
"version": "7.28.5",
|
| 40 |
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
|
| 41 |
+
"integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
|
| 42 |
+
"dev": true,
|
| 43 |
+
"license": "MIT",
|
| 44 |
+
"engines": {
|
| 45 |
+
"node": ">=6.9.0"
|
| 46 |
+
}
|
| 47 |
+
},
|
| 48 |
+
"node_modules/@babel/core": {
|
| 49 |
+
"version": "7.28.5",
|
| 50 |
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
|
| 51 |
+
"integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
|
| 52 |
+
"dev": true,
|
| 53 |
+
"license": "MIT",
|
| 54 |
+
"dependencies": {
|
| 55 |
+
"@babel/code-frame": "^7.27.1",
|
| 56 |
+
"@babel/generator": "^7.28.5",
|
| 57 |
+
"@babel/helper-compilation-targets": "^7.27.2",
|
| 58 |
+
"@babel/helper-module-transforms": "^7.28.3",
|
| 59 |
+
"@babel/helpers": "^7.28.4",
|
| 60 |
+
"@babel/parser": "^7.28.5",
|
| 61 |
+
"@babel/template": "^7.27.2",
|
| 62 |
+
"@babel/traverse": "^7.28.5",
|
| 63 |
+
"@babel/types": "^7.28.5",
|
| 64 |
+
"@jridgewell/remapping": "^2.3.5",
|
| 65 |
+
"convert-source-map": "^2.0.0",
|
| 66 |
+
"debug": "^4.1.0",
|
| 67 |
+
"gensync": "^1.0.0-beta.2",
|
| 68 |
+
"json5": "^2.2.3",
|
| 69 |
+
"semver": "^6.3.1"
|
| 70 |
+
},
|
| 71 |
+
"engines": {
|
| 72 |
+
"node": ">=6.9.0"
|
| 73 |
+
},
|
| 74 |
+
"funding": {
|
| 75 |
+
"type": "opencollective",
|
| 76 |
+
"url": "https://opencollective.com/babel"
|
| 77 |
+
}
|
| 78 |
+
},
|
| 79 |
+
"node_modules/@babel/generator": {
|
| 80 |
+
"version": "7.28.5",
|
| 81 |
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
|
| 82 |
+
"integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
|
| 83 |
+
"dev": true,
|
| 84 |
+
"license": "MIT",
|
| 85 |
+
"dependencies": {
|
| 86 |
+
"@babel/parser": "^7.28.5",
|
| 87 |
+
"@babel/types": "^7.28.5",
|
| 88 |
+
"@jridgewell/gen-mapping": "^0.3.12",
|
| 89 |
+
"@jridgewell/trace-mapping": "^0.3.28",
|
| 90 |
+
"jsesc": "^3.0.2"
|
| 91 |
+
},
|
| 92 |
+
"engines": {
|
| 93 |
+
"node": ">=6.9.0"
|
| 94 |
+
}
|
| 95 |
+
},
|
| 96 |
+
"node_modules/@babel/helper-compilation-targets": {
|
| 97 |
+
"version": "7.27.2",
|
| 98 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
|
| 99 |
+
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
|
| 100 |
+
"dev": true,
|
| 101 |
+
"license": "MIT",
|
| 102 |
+
"dependencies": {
|
| 103 |
+
"@babel/compat-data": "^7.27.2",
|
| 104 |
+
"@babel/helper-validator-option": "^7.27.1",
|
| 105 |
+
"browserslist": "^4.24.0",
|
| 106 |
+
"lru-cache": "^5.1.1",
|
| 107 |
+
"semver": "^6.3.1"
|
| 108 |
+
},
|
| 109 |
+
"engines": {
|
| 110 |
+
"node": ">=6.9.0"
|
| 111 |
+
}
|
| 112 |
+
},
|
| 113 |
+
"node_modules/@babel/helper-globals": {
|
| 114 |
+
"version": "7.28.0",
|
| 115 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
| 116 |
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
| 117 |
+
"dev": true,
|
| 118 |
+
"license": "MIT",
|
| 119 |
+
"engines": {
|
| 120 |
+
"node": ">=6.9.0"
|
| 121 |
+
}
|
| 122 |
+
},
|
| 123 |
+
"node_modules/@babel/helper-module-imports": {
|
| 124 |
+
"version": "7.27.1",
|
| 125 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
| 126 |
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
| 127 |
+
"dev": true,
|
| 128 |
+
"license": "MIT",
|
| 129 |
+
"dependencies": {
|
| 130 |
+
"@babel/traverse": "^7.27.1",
|
| 131 |
+
"@babel/types": "^7.27.1"
|
| 132 |
+
},
|
| 133 |
+
"engines": {
|
| 134 |
+
"node": ">=6.9.0"
|
| 135 |
+
}
|
| 136 |
+
},
|
| 137 |
+
"node_modules/@babel/helper-module-transforms": {
|
| 138 |
+
"version": "7.28.3",
|
| 139 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
|
| 140 |
+
"integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
|
| 141 |
+
"dev": true,
|
| 142 |
+
"license": "MIT",
|
| 143 |
+
"dependencies": {
|
| 144 |
+
"@babel/helper-module-imports": "^7.27.1",
|
| 145 |
+
"@babel/helper-validator-identifier": "^7.27.1",
|
| 146 |
+
"@babel/traverse": "^7.28.3"
|
| 147 |
+
},
|
| 148 |
+
"engines": {
|
| 149 |
+
"node": ">=6.9.0"
|
| 150 |
+
},
|
| 151 |
+
"peerDependencies": {
|
| 152 |
+
"@babel/core": "^7.0.0"
|
| 153 |
+
}
|
| 154 |
+
},
|
| 155 |
+
"node_modules/@babel/helper-plugin-utils": {
|
| 156 |
+
"version": "7.27.1",
|
| 157 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
|
| 158 |
+
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
|
| 159 |
+
"dev": true,
|
| 160 |
+
"license": "MIT",
|
| 161 |
+
"engines": {
|
| 162 |
+
"node": ">=6.9.0"
|
| 163 |
+
}
|
| 164 |
+
},
|
| 165 |
+
"node_modules/@babel/helper-string-parser": {
|
| 166 |
+
"version": "7.27.1",
|
| 167 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
| 168 |
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
| 169 |
+
"dev": true,
|
| 170 |
+
"license": "MIT",
|
| 171 |
+
"engines": {
|
| 172 |
+
"node": ">=6.9.0"
|
| 173 |
+
}
|
| 174 |
+
},
|
| 175 |
+
"node_modules/@babel/helper-validator-identifier": {
|
| 176 |
+
"version": "7.28.5",
|
| 177 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
| 178 |
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
| 179 |
+
"dev": true,
|
| 180 |
+
"license": "MIT",
|
| 181 |
+
"engines": {
|
| 182 |
+
"node": ">=6.9.0"
|
| 183 |
+
}
|
| 184 |
+
},
|
| 185 |
+
"node_modules/@babel/helper-validator-option": {
|
| 186 |
+
"version": "7.27.1",
|
| 187 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
| 188 |
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
| 189 |
+
"dev": true,
|
| 190 |
+
"license": "MIT",
|
| 191 |
+
"engines": {
|
| 192 |
+
"node": ">=6.9.0"
|
| 193 |
+
}
|
| 194 |
+
},
|
| 195 |
+
"node_modules/@babel/helpers": {
|
| 196 |
+
"version": "7.28.4",
|
| 197 |
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
|
| 198 |
+
"integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
|
| 199 |
+
"dev": true,
|
| 200 |
+
"license": "MIT",
|
| 201 |
+
"dependencies": {
|
| 202 |
+
"@babel/template": "^7.27.2",
|
| 203 |
+
"@babel/types": "^7.28.4"
|
| 204 |
+
},
|
| 205 |
+
"engines": {
|
| 206 |
+
"node": ">=6.9.0"
|
| 207 |
+
}
|
| 208 |
+
},
|
| 209 |
+
"node_modules/@babel/parser": {
|
| 210 |
+
"version": "7.28.5",
|
| 211 |
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
|
| 212 |
+
"integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
|
| 213 |
+
"dev": true,
|
| 214 |
+
"license": "MIT",
|
| 215 |
+
"dependencies": {
|
| 216 |
+
"@babel/types": "^7.28.5"
|
| 217 |
+
},
|
| 218 |
+
"bin": {
|
| 219 |
+
"parser": "bin/babel-parser.js"
|
| 220 |
+
},
|
| 221 |
+
"engines": {
|
| 222 |
+
"node": ">=6.0.0"
|
| 223 |
+
}
|
| 224 |
+
},
|
| 225 |
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
| 226 |
+
"version": "7.27.1",
|
| 227 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
| 228 |
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
| 229 |
+
"dev": true,
|
| 230 |
+
"license": "MIT",
|
| 231 |
+
"dependencies": {
|
| 232 |
+
"@babel/helper-plugin-utils": "^7.27.1"
|
| 233 |
+
},
|
| 234 |
+
"engines": {
|
| 235 |
+
"node": ">=6.9.0"
|
| 236 |
+
},
|
| 237 |
+
"peerDependencies": {
|
| 238 |
+
"@babel/core": "^7.0.0-0"
|
| 239 |
+
}
|
| 240 |
+
},
|
| 241 |
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
| 242 |
+
"version": "7.27.1",
|
| 243 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
| 244 |
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
| 245 |
+
"dev": true,
|
| 246 |
+
"license": "MIT",
|
| 247 |
+
"dependencies": {
|
| 248 |
+
"@babel/helper-plugin-utils": "^7.27.1"
|
| 249 |
+
},
|
| 250 |
+
"engines": {
|
| 251 |
+
"node": ">=6.9.0"
|
| 252 |
+
},
|
| 253 |
+
"peerDependencies": {
|
| 254 |
+
"@babel/core": "^7.0.0-0"
|
| 255 |
+
}
|
| 256 |
+
},
|
| 257 |
+
"node_modules/@babel/runtime": {
|
| 258 |
+
"version": "7.28.4",
|
| 259 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
|
| 260 |
+
"integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
|
| 261 |
+
"license": "MIT",
|
| 262 |
+
"engines": {
|
| 263 |
+
"node": ">=6.9.0"
|
| 264 |
+
}
|
| 265 |
+
},
|
| 266 |
+
"node_modules/@babel/template": {
|
| 267 |
+
"version": "7.27.2",
|
| 268 |
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
| 269 |
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
| 270 |
+
"dev": true,
|
| 271 |
+
"license": "MIT",
|
| 272 |
+
"dependencies": {
|
| 273 |
+
"@babel/code-frame": "^7.27.1",
|
| 274 |
+
"@babel/parser": "^7.27.2",
|
| 275 |
+
"@babel/types": "^7.27.1"
|
| 276 |
+
},
|
| 277 |
+
"engines": {
|
| 278 |
+
"node": ">=6.9.0"
|
| 279 |
+
}
|
| 280 |
+
},
|
| 281 |
+
"node_modules/@babel/traverse": {
|
| 282 |
+
"version": "7.28.5",
|
| 283 |
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
|
| 284 |
+
"integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
|
| 285 |
+
"dev": true,
|
| 286 |
+
"license": "MIT",
|
| 287 |
+
"dependencies": {
|
| 288 |
+
"@babel/code-frame": "^7.27.1",
|
| 289 |
+
"@babel/generator": "^7.28.5",
|
| 290 |
+
"@babel/helper-globals": "^7.28.0",
|
| 291 |
+
"@babel/parser": "^7.28.5",
|
| 292 |
+
"@babel/template": "^7.27.2",
|
| 293 |
+
"@babel/types": "^7.28.5",
|
| 294 |
+
"debug": "^4.3.1"
|
| 295 |
+
},
|
| 296 |
+
"engines": {
|
| 297 |
+
"node": ">=6.9.0"
|
| 298 |
+
}
|
| 299 |
+
},
|
| 300 |
+
"node_modules/@babel/types": {
|
| 301 |
+
"version": "7.28.5",
|
| 302 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
|
| 303 |
+
"integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
|
| 304 |
+
"dev": true,
|
| 305 |
+
"license": "MIT",
|
| 306 |
+
"dependencies": {
|
| 307 |
+
"@babel/helper-string-parser": "^7.27.1",
|
| 308 |
+
"@babel/helper-validator-identifier": "^7.28.5"
|
| 309 |
+
},
|
| 310 |
+
"engines": {
|
| 311 |
+
"node": ">=6.9.0"
|
| 312 |
+
}
|
| 313 |
+
},
|
| 314 |
+
"node_modules/@esbuild/aix-ppc64": {
|
| 315 |
+
"version": "0.25.12",
|
| 316 |
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
| 317 |
+
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
|
| 318 |
+
"cpu": [
|
| 319 |
+
"ppc64"
|
| 320 |
+
],
|
| 321 |
+
"dev": true,
|
| 322 |
+
"license": "MIT",
|
| 323 |
+
"optional": true,
|
| 324 |
+
"os": [
|
| 325 |
+
"aix"
|
| 326 |
+
],
|
| 327 |
+
"engines": {
|
| 328 |
+
"node": ">=18"
|
| 329 |
+
}
|
| 330 |
+
},
|
| 331 |
+
"node_modules/@esbuild/android-arm": {
|
| 332 |
+
"version": "0.25.12",
|
| 333 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
|
| 334 |
+
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
|
| 335 |
+
"cpu": [
|
| 336 |
+
"arm"
|
| 337 |
+
],
|
| 338 |
+
"dev": true,
|
| 339 |
+
"license": "MIT",
|
| 340 |
+
"optional": true,
|
| 341 |
+
"os": [
|
| 342 |
+
"android"
|
| 343 |
+
],
|
| 344 |
+
"engines": {
|
| 345 |
+
"node": ">=18"
|
| 346 |
+
}
|
| 347 |
+
},
|
| 348 |
+
"node_modules/@esbuild/android-arm64": {
|
| 349 |
+
"version": "0.25.12",
|
| 350 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
|
| 351 |
+
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
|
| 352 |
+
"cpu": [
|
| 353 |
+
"arm64"
|
| 354 |
+
],
|
| 355 |
+
"dev": true,
|
| 356 |
+
"license": "MIT",
|
| 357 |
+
"optional": true,
|
| 358 |
+
"os": [
|
| 359 |
+
"android"
|
| 360 |
+
],
|
| 361 |
+
"engines": {
|
| 362 |
+
"node": ">=18"
|
| 363 |
+
}
|
| 364 |
+
},
|
| 365 |
+
"node_modules/@esbuild/android-x64": {
|
| 366 |
+
"version": "0.25.12",
|
| 367 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
|
| 368 |
+
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
|
| 369 |
+
"cpu": [
|
| 370 |
+
"x64"
|
| 371 |
+
],
|
| 372 |
+
"dev": true,
|
| 373 |
+
"license": "MIT",
|
| 374 |
+
"optional": true,
|
| 375 |
+
"os": [
|
| 376 |
+
"android"
|
| 377 |
+
],
|
| 378 |
+
"engines": {
|
| 379 |
+
"node": ">=18"
|
| 380 |
+
}
|
| 381 |
+
},
|
| 382 |
+
"node_modules/@esbuild/darwin-arm64": {
|
| 383 |
+
"version": "0.25.12",
|
| 384 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
|
| 385 |
+
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
|
| 386 |
+
"cpu": [
|
| 387 |
+
"arm64"
|
| 388 |
+
],
|
| 389 |
+
"dev": true,
|
| 390 |
+
"license": "MIT",
|
| 391 |
+
"optional": true,
|
| 392 |
+
"os": [
|
| 393 |
+
"darwin"
|
| 394 |
+
],
|
| 395 |
+
"engines": {
|
| 396 |
+
"node": ">=18"
|
| 397 |
+
}
|
| 398 |
+
},
|
| 399 |
+
"node_modules/@esbuild/darwin-x64": {
|
| 400 |
+
"version": "0.25.12",
|
| 401 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
| 402 |
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
| 403 |
+
"cpu": [
|
| 404 |
+
"x64"
|
| 405 |
+
],
|
| 406 |
+
"dev": true,
|
| 407 |
+
"license": "MIT",
|
| 408 |
+
"optional": true,
|
| 409 |
+
"os": [
|
| 410 |
+
"darwin"
|
| 411 |
+
],
|
| 412 |
+
"engines": {
|
| 413 |
+
"node": ">=18"
|
| 414 |
+
}
|
| 415 |
+
},
|
| 416 |
+
"node_modules/@esbuild/freebsd-arm64": {
|
| 417 |
+
"version": "0.25.12",
|
| 418 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
|
| 419 |
+
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
|
| 420 |
+
"cpu": [
|
| 421 |
+
"arm64"
|
| 422 |
+
],
|
| 423 |
+
"dev": true,
|
| 424 |
+
"license": "MIT",
|
| 425 |
+
"optional": true,
|
| 426 |
+
"os": [
|
| 427 |
+
"freebsd"
|
| 428 |
+
],
|
| 429 |
+
"engines": {
|
| 430 |
+
"node": ">=18"
|
| 431 |
+
}
|
| 432 |
+
},
|
| 433 |
+
"node_modules/@esbuild/freebsd-x64": {
|
| 434 |
+
"version": "0.25.12",
|
| 435 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
| 436 |
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
| 437 |
+
"cpu": [
|
| 438 |
+
"x64"
|
| 439 |
+
],
|
| 440 |
+
"dev": true,
|
| 441 |
+
"license": "MIT",
|
| 442 |
+
"optional": true,
|
| 443 |
+
"os": [
|
| 444 |
+
"freebsd"
|
| 445 |
+
],
|
| 446 |
+
"engines": {
|
| 447 |
+
"node": ">=18"
|
| 448 |
+
}
|
| 449 |
+
},
|
| 450 |
+
"node_modules/@esbuild/linux-arm": {
|
| 451 |
+
"version": "0.25.12",
|
| 452 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
|
| 453 |
+
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
|
| 454 |
+
"cpu": [
|
| 455 |
+
"arm"
|
| 456 |
+
],
|
| 457 |
+
"dev": true,
|
| 458 |
+
"license": "MIT",
|
| 459 |
+
"optional": true,
|
| 460 |
+
"os": [
|
| 461 |
+
"linux"
|
| 462 |
+
],
|
| 463 |
+
"engines": {
|
| 464 |
+
"node": ">=18"
|
| 465 |
+
}
|
| 466 |
+
},
|
| 467 |
+
"node_modules/@esbuild/linux-arm64": {
|
| 468 |
+
"version": "0.25.12",
|
| 469 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
|
| 470 |
+
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
|
| 471 |
+
"cpu": [
|
| 472 |
+
"arm64"
|
| 473 |
+
],
|
| 474 |
+
"dev": true,
|
| 475 |
+
"license": "MIT",
|
| 476 |
+
"optional": true,
|
| 477 |
+
"os": [
|
| 478 |
+
"linux"
|
| 479 |
+
],
|
| 480 |
+
"engines": {
|
| 481 |
+
"node": ">=18"
|
| 482 |
+
}
|
| 483 |
+
},
|
| 484 |
+
"node_modules/@esbuild/linux-ia32": {
|
| 485 |
+
"version": "0.25.12",
|
| 486 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
|
| 487 |
+
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
|
| 488 |
+
"cpu": [
|
| 489 |
+
"ia32"
|
| 490 |
+
],
|
| 491 |
+
"dev": true,
|
| 492 |
+
"license": "MIT",
|
| 493 |
+
"optional": true,
|
| 494 |
+
"os": [
|
| 495 |
+
"linux"
|
| 496 |
+
],
|
| 497 |
+
"engines": {
|
| 498 |
+
"node": ">=18"
|
| 499 |
+
}
|
| 500 |
+
},
|
| 501 |
+
"node_modules/@esbuild/linux-loong64": {
|
| 502 |
+
"version": "0.25.12",
|
| 503 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
|
| 504 |
+
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
|
| 505 |
+
"cpu": [
|
| 506 |
+
"loong64"
|
| 507 |
+
],
|
| 508 |
+
"dev": true,
|
| 509 |
+
"license": "MIT",
|
| 510 |
+
"optional": true,
|
| 511 |
+
"os": [
|
| 512 |
+
"linux"
|
| 513 |
+
],
|
| 514 |
+
"engines": {
|
| 515 |
+
"node": ">=18"
|
| 516 |
+
}
|
| 517 |
+
},
|
| 518 |
+
"node_modules/@esbuild/linux-mips64el": {
|
| 519 |
+
"version": "0.25.12",
|
| 520 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
|
| 521 |
+
"integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
|
| 522 |
+
"cpu": [
|
| 523 |
+
"mips64el"
|
| 524 |
+
],
|
| 525 |
+
"dev": true,
|
| 526 |
+
"license": "MIT",
|
| 527 |
+
"optional": true,
|
| 528 |
+
"os": [
|
| 529 |
+
"linux"
|
| 530 |
+
],
|
| 531 |
+
"engines": {
|
| 532 |
+
"node": ">=18"
|
| 533 |
+
}
|
| 534 |
+
},
|
| 535 |
+
"node_modules/@esbuild/linux-ppc64": {
|
| 536 |
+
"version": "0.25.12",
|
| 537 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
|
| 538 |
+
"integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
|
| 539 |
+
"cpu": [
|
| 540 |
+
"ppc64"
|
| 541 |
+
],
|
| 542 |
+
"dev": true,
|
| 543 |
+
"license": "MIT",
|
| 544 |
+
"optional": true,
|
| 545 |
+
"os": [
|
| 546 |
+
"linux"
|
| 547 |
+
],
|
| 548 |
+
"engines": {
|
| 549 |
+
"node": ">=18"
|
| 550 |
+
}
|
| 551 |
+
},
|
| 552 |
+
"node_modules/@esbuild/linux-riscv64": {
|
| 553 |
+
"version": "0.25.12",
|
| 554 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
|
| 555 |
+
"integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
|
| 556 |
+
"cpu": [
|
| 557 |
+
"riscv64"
|
| 558 |
+
],
|
| 559 |
+
"dev": true,
|
| 560 |
+
"license": "MIT",
|
| 561 |
+
"optional": true,
|
| 562 |
+
"os": [
|
| 563 |
+
"linux"
|
| 564 |
+
],
|
| 565 |
+
"engines": {
|
| 566 |
+
"node": ">=18"
|
| 567 |
+
}
|
| 568 |
+
},
|
| 569 |
+
"node_modules/@esbuild/linux-s390x": {
|
| 570 |
+
"version": "0.25.12",
|
| 571 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
|
| 572 |
+
"integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
|
| 573 |
+
"cpu": [
|
| 574 |
+
"s390x"
|
| 575 |
+
],
|
| 576 |
+
"dev": true,
|
| 577 |
+
"license": "MIT",
|
| 578 |
+
"optional": true,
|
| 579 |
+
"os": [
|
| 580 |
+
"linux"
|
| 581 |
+
],
|
| 582 |
+
"engines": {
|
| 583 |
+
"node": ">=18"
|
| 584 |
+
}
|
| 585 |
+
},
|
| 586 |
+
"node_modules/@esbuild/linux-x64": {
|
| 587 |
+
"version": "0.25.12",
|
| 588 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
|
| 589 |
+
"integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
|
| 590 |
+
"cpu": [
|
| 591 |
+
"x64"
|
| 592 |
+
],
|
| 593 |
+
"dev": true,
|
| 594 |
+
"license": "MIT",
|
| 595 |
+
"optional": true,
|
| 596 |
+
"os": [
|
| 597 |
+
"linux"
|
| 598 |
+
],
|
| 599 |
+
"engines": {
|
| 600 |
+
"node": ">=18"
|
| 601 |
+
}
|
| 602 |
+
},
|
| 603 |
+
"node_modules/@esbuild/netbsd-arm64": {
|
| 604 |
+
"version": "0.25.12",
|
| 605 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
|
| 606 |
+
"integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
|
| 607 |
+
"cpu": [
|
| 608 |
+
"arm64"
|
| 609 |
+
],
|
| 610 |
+
"dev": true,
|
| 611 |
+
"license": "MIT",
|
| 612 |
+
"optional": true,
|
| 613 |
+
"os": [
|
| 614 |
+
"netbsd"
|
| 615 |
+
],
|
| 616 |
+
"engines": {
|
| 617 |
+
"node": ">=18"
|
| 618 |
+
}
|
| 619 |
+
},
|
| 620 |
+
"node_modules/@esbuild/netbsd-x64": {
|
| 621 |
+
"version": "0.25.12",
|
| 622 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
|
| 623 |
+
"integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
|
| 624 |
+
"cpu": [
|
| 625 |
+
"x64"
|
| 626 |
+
],
|
| 627 |
+
"dev": true,
|
| 628 |
+
"license": "MIT",
|
| 629 |
+
"optional": true,
|
| 630 |
+
"os": [
|
| 631 |
+
"netbsd"
|
| 632 |
+
],
|
| 633 |
+
"engines": {
|
| 634 |
+
"node": ">=18"
|
| 635 |
+
}
|
| 636 |
+
},
|
| 637 |
+
"node_modules/@esbuild/openbsd-arm64": {
|
| 638 |
+
"version": "0.25.12",
|
| 639 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
|
| 640 |
+
"integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
|
| 641 |
+
"cpu": [
|
| 642 |
+
"arm64"
|
| 643 |
+
],
|
| 644 |
+
"dev": true,
|
| 645 |
+
"license": "MIT",
|
| 646 |
+
"optional": true,
|
| 647 |
+
"os": [
|
| 648 |
+
"openbsd"
|
| 649 |
+
],
|
| 650 |
+
"engines": {
|
| 651 |
+
"node": ">=18"
|
| 652 |
+
}
|
| 653 |
+
},
|
| 654 |
+
"node_modules/@esbuild/openbsd-x64": {
|
| 655 |
+
"version": "0.25.12",
|
| 656 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
|
| 657 |
+
"integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
|
| 658 |
+
"cpu": [
|
| 659 |
+
"x64"
|
| 660 |
+
],
|
| 661 |
+
"dev": true,
|
| 662 |
+
"license": "MIT",
|
| 663 |
+
"optional": true,
|
| 664 |
+
"os": [
|
| 665 |
+
"openbsd"
|
| 666 |
+
],
|
| 667 |
+
"engines": {
|
| 668 |
+
"node": ">=18"
|
| 669 |
+
}
|
| 670 |
+
},
|
| 671 |
+
"node_modules/@esbuild/openharmony-arm64": {
|
| 672 |
+
"version": "0.25.12",
|
| 673 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
|
| 674 |
+
"integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
|
| 675 |
+
"cpu": [
|
| 676 |
+
"arm64"
|
| 677 |
+
],
|
| 678 |
+
"dev": true,
|
| 679 |
+
"license": "MIT",
|
| 680 |
+
"optional": true,
|
| 681 |
+
"os": [
|
| 682 |
+
"openharmony"
|
| 683 |
+
],
|
| 684 |
+
"engines": {
|
| 685 |
+
"node": ">=18"
|
| 686 |
+
}
|
| 687 |
+
},
|
| 688 |
+
"node_modules/@esbuild/sunos-x64": {
|
| 689 |
+
"version": "0.25.12",
|
| 690 |
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
|
| 691 |
+
"integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
|
| 692 |
+
"cpu": [
|
| 693 |
+
"x64"
|
| 694 |
+
],
|
| 695 |
+
"dev": true,
|
| 696 |
+
"license": "MIT",
|
| 697 |
+
"optional": true,
|
| 698 |
+
"os": [
|
| 699 |
+
"sunos"
|
| 700 |
+
],
|
| 701 |
+
"engines": {
|
| 702 |
+
"node": ">=18"
|
| 703 |
+
}
|
| 704 |
+
},
|
| 705 |
+
"node_modules/@esbuild/win32-arm64": {
|
| 706 |
+
"version": "0.25.12",
|
| 707 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
|
| 708 |
+
"integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
|
| 709 |
+
"cpu": [
|
| 710 |
+
"arm64"
|
| 711 |
+
],
|
| 712 |
+
"dev": true,
|
| 713 |
+
"license": "MIT",
|
| 714 |
+
"optional": true,
|
| 715 |
+
"os": [
|
| 716 |
+
"win32"
|
| 717 |
+
],
|
| 718 |
+
"engines": {
|
| 719 |
+
"node": ">=18"
|
| 720 |
+
}
|
| 721 |
+
},
|
| 722 |
+
"node_modules/@esbuild/win32-ia32": {
|
| 723 |
+
"version": "0.25.12",
|
| 724 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
| 725 |
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
| 726 |
+
"cpu": [
|
| 727 |
+
"ia32"
|
| 728 |
+
],
|
| 729 |
+
"dev": true,
|
| 730 |
+
"license": "MIT",
|
| 731 |
+
"optional": true,
|
| 732 |
+
"os": [
|
| 733 |
+
"win32"
|
| 734 |
+
],
|
| 735 |
+
"engines": {
|
| 736 |
+
"node": ">=18"
|
| 737 |
+
}
|
| 738 |
+
},
|
| 739 |
+
"node_modules/@esbuild/win32-x64": {
|
| 740 |
+
"version": "0.25.12",
|
| 741 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
|
| 742 |
+
"integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
|
| 743 |
+
"cpu": [
|
| 744 |
+
"x64"
|
| 745 |
+
],
|
| 746 |
+
"dev": true,
|
| 747 |
+
"license": "MIT",
|
| 748 |
+
"optional": true,
|
| 749 |
+
"os": [
|
| 750 |
+
"win32"
|
| 751 |
+
],
|
| 752 |
+
"engines": {
|
| 753 |
+
"node": ">=18"
|
| 754 |
+
}
|
| 755 |
+
},
|
| 756 |
+
"node_modules/@jridgewell/gen-mapping": {
|
| 757 |
+
"version": "0.3.13",
|
| 758 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
| 759 |
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
| 760 |
+
"dev": true,
|
| 761 |
+
"license": "MIT",
|
| 762 |
+
"dependencies": {
|
| 763 |
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
| 764 |
+
"@jridgewell/trace-mapping": "^0.3.24"
|
| 765 |
+
}
|
| 766 |
+
},
|
| 767 |
+
"node_modules/@jridgewell/remapping": {
|
| 768 |
+
"version": "2.3.5",
|
| 769 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
| 770 |
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
| 771 |
+
"dev": true,
|
| 772 |
+
"license": "MIT",
|
| 773 |
+
"dependencies": {
|
| 774 |
+
"@jridgewell/gen-mapping": "^0.3.5",
|
| 775 |
+
"@jridgewell/trace-mapping": "^0.3.24"
|
| 776 |
+
}
|
| 777 |
+
},
|
| 778 |
+
"node_modules/@jridgewell/resolve-uri": {
|
| 779 |
+
"version": "3.1.2",
|
| 780 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
| 781 |
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
| 782 |
+
"dev": true,
|
| 783 |
+
"license": "MIT",
|
| 784 |
+
"engines": {
|
| 785 |
+
"node": ">=6.0.0"
|
| 786 |
+
}
|
| 787 |
+
},
|
| 788 |
+
"node_modules/@jridgewell/sourcemap-codec": {
|
| 789 |
+
"version": "1.5.5",
|
| 790 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
| 791 |
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
| 792 |
+
"dev": true,
|
| 793 |
+
"license": "MIT"
|
| 794 |
+
},
|
| 795 |
+
"node_modules/@jridgewell/trace-mapping": {
|
| 796 |
+
"version": "0.3.31",
|
| 797 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
| 798 |
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
| 799 |
+
"dev": true,
|
| 800 |
+
"license": "MIT",
|
| 801 |
+
"dependencies": {
|
| 802 |
+
"@jridgewell/resolve-uri": "^3.1.0",
|
| 803 |
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
| 804 |
+
}
|
| 805 |
+
},
|
| 806 |
+
"node_modules/@react-three/fiber": {
|
| 807 |
+
"version": "9.4.2",
|
| 808 |
+
"resolved": "https://registry.npmjs.org/@react-three/fiber/-/fiber-9.4.2.tgz",
|
| 809 |
+
"integrity": "sha512-H4B4+FDNHpvIb4FmphH4ubxOfX5bxmfOw0+3pkQwR9u9wFiyMS7wUDkNn0m4RqQuiLWeia9jfN1eBvtyAVGEog==",
|
| 810 |
+
"license": "MIT",
|
| 811 |
+
"dependencies": {
|
| 812 |
+
"@babel/runtime": "^7.17.8",
|
| 813 |
+
"@types/react-reconciler": "^0.32.0",
|
| 814 |
+
"@types/webxr": "*",
|
| 815 |
+
"base64-js": "^1.5.1",
|
| 816 |
+
"buffer": "^6.0.3",
|
| 817 |
+
"its-fine": "^2.0.0",
|
| 818 |
+
"react-reconciler": "^0.31.0",
|
| 819 |
+
"react-use-measure": "^2.1.7",
|
| 820 |
+
"scheduler": "^0.25.0",
|
| 821 |
+
"suspend-react": "^0.1.3",
|
| 822 |
+
"use-sync-external-store": "^1.4.0",
|
| 823 |
+
"zustand": "^5.0.3"
|
| 824 |
+
},
|
| 825 |
+
"peerDependencies": {
|
| 826 |
+
"expo": ">=43.0",
|
| 827 |
+
"expo-asset": ">=8.4",
|
| 828 |
+
"expo-file-system": ">=11.0",
|
| 829 |
+
"expo-gl": ">=11.0",
|
| 830 |
+
"react": "^19.0.0",
|
| 831 |
+
"react-dom": "^19.0.0",
|
| 832 |
+
"react-native": ">=0.78",
|
| 833 |
+
"three": ">=0.156"
|
| 834 |
+
},
|
| 835 |
+
"peerDependenciesMeta": {
|
| 836 |
+
"expo": {
|
| 837 |
+
"optional": true
|
| 838 |
+
},
|
| 839 |
+
"expo-asset": {
|
| 840 |
+
"optional": true
|
| 841 |
+
},
|
| 842 |
+
"expo-file-system": {
|
| 843 |
+
"optional": true
|
| 844 |
+
},
|
| 845 |
+
"expo-gl": {
|
| 846 |
+
"optional": true
|
| 847 |
+
},
|
| 848 |
+
"react-dom": {
|
| 849 |
+
"optional": true
|
| 850 |
+
},
|
| 851 |
+
"react-native": {
|
| 852 |
+
"optional": true
|
| 853 |
+
}
|
| 854 |
+
}
|
| 855 |
+
},
|
| 856 |
+
"node_modules/@rolldown/pluginutils": {
|
| 857 |
+
"version": "1.0.0-beta.53",
|
| 858 |
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.53.tgz",
|
| 859 |
+
"integrity": "sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==",
|
| 860 |
+
"dev": true,
|
| 861 |
+
"license": "MIT"
|
| 862 |
+
},
|
| 863 |
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
| 864 |
+
"version": "4.53.5",
|
| 865 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.5.tgz",
|
| 866 |
+
"integrity": "sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==",
|
| 867 |
+
"cpu": [
|
| 868 |
+
"arm"
|
| 869 |
+
],
|
| 870 |
+
"dev": true,
|
| 871 |
+
"license": "MIT",
|
| 872 |
+
"optional": true,
|
| 873 |
+
"os": [
|
| 874 |
+
"android"
|
| 875 |
+
]
|
| 876 |
+
},
|
| 877 |
+
"node_modules/@rollup/rollup-android-arm64": {
|
| 878 |
+
"version": "4.53.5",
|
| 879 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.5.tgz",
|
| 880 |
+
"integrity": "sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==",
|
| 881 |
+
"cpu": [
|
| 882 |
+
"arm64"
|
| 883 |
+
],
|
| 884 |
+
"dev": true,
|
| 885 |
+
"license": "MIT",
|
| 886 |
+
"optional": true,
|
| 887 |
+
"os": [
|
| 888 |
+
"android"
|
| 889 |
+
]
|
| 890 |
+
},
|
| 891 |
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
| 892 |
+
"version": "4.53.5",
|
| 893 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.5.tgz",
|
| 894 |
+
"integrity": "sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==",
|
| 895 |
+
"cpu": [
|
| 896 |
+
"arm64"
|
| 897 |
+
],
|
| 898 |
+
"dev": true,
|
| 899 |
+
"license": "MIT",
|
| 900 |
+
"optional": true,
|
| 901 |
+
"os": [
|
| 902 |
+
"darwin"
|
| 903 |
+
]
|
| 904 |
+
},
|
| 905 |
+
"node_modules/@rollup/rollup-darwin-x64": {
|
| 906 |
+
"version": "4.53.5",
|
| 907 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.5.tgz",
|
| 908 |
+
"integrity": "sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==",
|
| 909 |
+
"cpu": [
|
| 910 |
+
"x64"
|
| 911 |
+
],
|
| 912 |
+
"dev": true,
|
| 913 |
+
"license": "MIT",
|
| 914 |
+
"optional": true,
|
| 915 |
+
"os": [
|
| 916 |
+
"darwin"
|
| 917 |
+
]
|
| 918 |
+
},
|
| 919 |
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
| 920 |
+
"version": "4.53.5",
|
| 921 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.5.tgz",
|
| 922 |
+
"integrity": "sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==",
|
| 923 |
+
"cpu": [
|
| 924 |
+
"arm64"
|
| 925 |
+
],
|
| 926 |
+
"dev": true,
|
| 927 |
+
"license": "MIT",
|
| 928 |
+
"optional": true,
|
| 929 |
+
"os": [
|
| 930 |
+
"freebsd"
|
| 931 |
+
]
|
| 932 |
+
},
|
| 933 |
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
| 934 |
+
"version": "4.53.5",
|
| 935 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.5.tgz",
|
| 936 |
+
"integrity": "sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==",
|
| 937 |
+
"cpu": [
|
| 938 |
+
"x64"
|
| 939 |
+
],
|
| 940 |
+
"dev": true,
|
| 941 |
+
"license": "MIT",
|
| 942 |
+
"optional": true,
|
| 943 |
+
"os": [
|
| 944 |
+
"freebsd"
|
| 945 |
+
]
|
| 946 |
+
},
|
| 947 |
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
| 948 |
+
"version": "4.53.5",
|
| 949 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.5.tgz",
|
| 950 |
+
"integrity": "sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==",
|
| 951 |
+
"cpu": [
|
| 952 |
+
"arm"
|
| 953 |
+
],
|
| 954 |
+
"dev": true,
|
| 955 |
+
"license": "MIT",
|
| 956 |
+
"optional": true,
|
| 957 |
+
"os": [
|
| 958 |
+
"linux"
|
| 959 |
+
]
|
| 960 |
+
},
|
| 961 |
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
| 962 |
+
"version": "4.53.5",
|
| 963 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.5.tgz",
|
| 964 |
+
"integrity": "sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==",
|
| 965 |
+
"cpu": [
|
| 966 |
+
"arm"
|
| 967 |
+
],
|
| 968 |
+
"dev": true,
|
| 969 |
+
"license": "MIT",
|
| 970 |
+
"optional": true,
|
| 971 |
+
"os": [
|
| 972 |
+
"linux"
|
| 973 |
+
]
|
| 974 |
+
},
|
| 975 |
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
| 976 |
+
"version": "4.53.5",
|
| 977 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.5.tgz",
|
| 978 |
+
"integrity": "sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==",
|
| 979 |
+
"cpu": [
|
| 980 |
+
"arm64"
|
| 981 |
+
],
|
| 982 |
+
"dev": true,
|
| 983 |
+
"license": "MIT",
|
| 984 |
+
"optional": true,
|
| 985 |
+
"os": [
|
| 986 |
+
"linux"
|
| 987 |
+
]
|
| 988 |
+
},
|
| 989 |
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
| 990 |
+
"version": "4.53.5",
|
| 991 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.5.tgz",
|
| 992 |
+
"integrity": "sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==",
|
| 993 |
+
"cpu": [
|
| 994 |
+
"arm64"
|
| 995 |
+
],
|
| 996 |
+
"dev": true,
|
| 997 |
+
"license": "MIT",
|
| 998 |
+
"optional": true,
|
| 999 |
+
"os": [
|
| 1000 |
+
"linux"
|
| 1001 |
+
]
|
| 1002 |
+
},
|
| 1003 |
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
| 1004 |
+
"version": "4.53.5",
|
| 1005 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.5.tgz",
|
| 1006 |
+
"integrity": "sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==",
|
| 1007 |
+
"cpu": [
|
| 1008 |
+
"loong64"
|
| 1009 |
+
],
|
| 1010 |
+
"dev": true,
|
| 1011 |
+
"license": "MIT",
|
| 1012 |
+
"optional": true,
|
| 1013 |
+
"os": [
|
| 1014 |
+
"linux"
|
| 1015 |
+
]
|
| 1016 |
+
},
|
| 1017 |
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
| 1018 |
+
"version": "4.53.5",
|
| 1019 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.5.tgz",
|
| 1020 |
+
"integrity": "sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==",
|
| 1021 |
+
"cpu": [
|
| 1022 |
+
"ppc64"
|
| 1023 |
+
],
|
| 1024 |
+
"dev": true,
|
| 1025 |
+
"license": "MIT",
|
| 1026 |
+
"optional": true,
|
| 1027 |
+
"os": [
|
| 1028 |
+
"linux"
|
| 1029 |
+
]
|
| 1030 |
+
},
|
| 1031 |
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
| 1032 |
+
"version": "4.53.5",
|
| 1033 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.5.tgz",
|
| 1034 |
+
"integrity": "sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==",
|
| 1035 |
+
"cpu": [
|
| 1036 |
+
"riscv64"
|
| 1037 |
+
],
|
| 1038 |
+
"dev": true,
|
| 1039 |
+
"license": "MIT",
|
| 1040 |
+
"optional": true,
|
| 1041 |
+
"os": [
|
| 1042 |
+
"linux"
|
| 1043 |
+
]
|
| 1044 |
+
},
|
| 1045 |
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
| 1046 |
+
"version": "4.53.5",
|
| 1047 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.5.tgz",
|
| 1048 |
+
"integrity": "sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==",
|
| 1049 |
+
"cpu": [
|
| 1050 |
+
"riscv64"
|
| 1051 |
+
],
|
| 1052 |
+
"dev": true,
|
| 1053 |
+
"license": "MIT",
|
| 1054 |
+
"optional": true,
|
| 1055 |
+
"os": [
|
| 1056 |
+
"linux"
|
| 1057 |
+
]
|
| 1058 |
+
},
|
| 1059 |
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
| 1060 |
+
"version": "4.53.5",
|
| 1061 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.5.tgz",
|
| 1062 |
+
"integrity": "sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==",
|
| 1063 |
+
"cpu": [
|
| 1064 |
+
"s390x"
|
| 1065 |
+
],
|
| 1066 |
+
"dev": true,
|
| 1067 |
+
"license": "MIT",
|
| 1068 |
+
"optional": true,
|
| 1069 |
+
"os": [
|
| 1070 |
+
"linux"
|
| 1071 |
+
]
|
| 1072 |
+
},
|
| 1073 |
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
| 1074 |
+
"version": "4.53.5",
|
| 1075 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.5.tgz",
|
| 1076 |
+
"integrity": "sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==",
|
| 1077 |
+
"cpu": [
|
| 1078 |
+
"x64"
|
| 1079 |
+
],
|
| 1080 |
+
"dev": true,
|
| 1081 |
+
"license": "MIT",
|
| 1082 |
+
"optional": true,
|
| 1083 |
+
"os": [
|
| 1084 |
+
"linux"
|
| 1085 |
+
]
|
| 1086 |
+
},
|
| 1087 |
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
| 1088 |
+
"version": "4.53.5",
|
| 1089 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.5.tgz",
|
| 1090 |
+
"integrity": "sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==",
|
| 1091 |
+
"cpu": [
|
| 1092 |
+
"x64"
|
| 1093 |
+
],
|
| 1094 |
+
"dev": true,
|
| 1095 |
+
"license": "MIT",
|
| 1096 |
+
"optional": true,
|
| 1097 |
+
"os": [
|
| 1098 |
+
"linux"
|
| 1099 |
+
]
|
| 1100 |
+
},
|
| 1101 |
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
| 1102 |
+
"version": "4.53.5",
|
| 1103 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.5.tgz",
|
| 1104 |
+
"integrity": "sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==",
|
| 1105 |
+
"cpu": [
|
| 1106 |
+
"arm64"
|
| 1107 |
+
],
|
| 1108 |
+
"dev": true,
|
| 1109 |
+
"license": "MIT",
|
| 1110 |
+
"optional": true,
|
| 1111 |
+
"os": [
|
| 1112 |
+
"openharmony"
|
| 1113 |
+
]
|
| 1114 |
+
},
|
| 1115 |
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
| 1116 |
+
"version": "4.53.5",
|
| 1117 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.5.tgz",
|
| 1118 |
+
"integrity": "sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==",
|
| 1119 |
+
"cpu": [
|
| 1120 |
+
"arm64"
|
| 1121 |
+
],
|
| 1122 |
+
"dev": true,
|
| 1123 |
+
"license": "MIT",
|
| 1124 |
+
"optional": true,
|
| 1125 |
+
"os": [
|
| 1126 |
+
"win32"
|
| 1127 |
+
]
|
| 1128 |
+
},
|
| 1129 |
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
| 1130 |
+
"version": "4.53.5",
|
| 1131 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.5.tgz",
|
| 1132 |
+
"integrity": "sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==",
|
| 1133 |
+
"cpu": [
|
| 1134 |
+
"ia32"
|
| 1135 |
+
],
|
| 1136 |
+
"dev": true,
|
| 1137 |
+
"license": "MIT",
|
| 1138 |
+
"optional": true,
|
| 1139 |
+
"os": [
|
| 1140 |
+
"win32"
|
| 1141 |
+
]
|
| 1142 |
+
},
|
| 1143 |
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
| 1144 |
+
"version": "4.53.5",
|
| 1145 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.5.tgz",
|
| 1146 |
+
"integrity": "sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==",
|
| 1147 |
+
"cpu": [
|
| 1148 |
+
"x64"
|
| 1149 |
+
],
|
| 1150 |
+
"dev": true,
|
| 1151 |
+
"license": "MIT",
|
| 1152 |
+
"optional": true,
|
| 1153 |
+
"os": [
|
| 1154 |
+
"win32"
|
| 1155 |
+
]
|
| 1156 |
+
},
|
| 1157 |
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
| 1158 |
+
"version": "4.53.5",
|
| 1159 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.5.tgz",
|
| 1160 |
+
"integrity": "sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==",
|
| 1161 |
+
"cpu": [
|
| 1162 |
+
"x64"
|
| 1163 |
+
],
|
| 1164 |
+
"dev": true,
|
| 1165 |
+
"license": "MIT",
|
| 1166 |
+
"optional": true,
|
| 1167 |
+
"os": [
|
| 1168 |
+
"win32"
|
| 1169 |
+
]
|
| 1170 |
+
},
|
| 1171 |
+
"node_modules/@types/babel__core": {
|
| 1172 |
+
"version": "7.20.5",
|
| 1173 |
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
| 1174 |
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
| 1175 |
+
"dev": true,
|
| 1176 |
+
"license": "MIT",
|
| 1177 |
+
"dependencies": {
|
| 1178 |
+
"@babel/parser": "^7.20.7",
|
| 1179 |
+
"@babel/types": "^7.20.7",
|
| 1180 |
+
"@types/babel__generator": "*",
|
| 1181 |
+
"@types/babel__template": "*",
|
| 1182 |
+
"@types/babel__traverse": "*"
|
| 1183 |
+
}
|
| 1184 |
+
},
|
| 1185 |
+
"node_modules/@types/babel__generator": {
|
| 1186 |
+
"version": "7.27.0",
|
| 1187 |
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
| 1188 |
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
| 1189 |
+
"dev": true,
|
| 1190 |
+
"license": "MIT",
|
| 1191 |
+
"dependencies": {
|
| 1192 |
+
"@babel/types": "^7.0.0"
|
| 1193 |
+
}
|
| 1194 |
+
},
|
| 1195 |
+
"node_modules/@types/babel__template": {
|
| 1196 |
+
"version": "7.4.4",
|
| 1197 |
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
| 1198 |
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
| 1199 |
+
"dev": true,
|
| 1200 |
+
"license": "MIT",
|
| 1201 |
+
"dependencies": {
|
| 1202 |
+
"@babel/parser": "^7.1.0",
|
| 1203 |
+
"@babel/types": "^7.0.0"
|
| 1204 |
+
}
|
| 1205 |
+
},
|
| 1206 |
+
"node_modules/@types/babel__traverse": {
|
| 1207 |
+
"version": "7.28.0",
|
| 1208 |
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
| 1209 |
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
| 1210 |
+
"dev": true,
|
| 1211 |
+
"license": "MIT",
|
| 1212 |
+
"dependencies": {
|
| 1213 |
+
"@babel/types": "^7.28.2"
|
| 1214 |
+
}
|
| 1215 |
+
},
|
| 1216 |
+
"node_modules/@types/estree": {
|
| 1217 |
+
"version": "1.0.8",
|
| 1218 |
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
| 1219 |
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
| 1220 |
+
"dev": true,
|
| 1221 |
+
"license": "MIT"
|
| 1222 |
+
},
|
| 1223 |
+
"node_modules/@types/node": {
|
| 1224 |
+
"version": "22.19.3",
|
| 1225 |
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.3.tgz",
|
| 1226 |
+
"integrity": "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==",
|
| 1227 |
+
"dev": true,
|
| 1228 |
+
"license": "MIT",
|
| 1229 |
+
"dependencies": {
|
| 1230 |
+
"undici-types": "~6.21.0"
|
| 1231 |
+
}
|
| 1232 |
+
},
|
| 1233 |
+
"node_modules/@types/react-reconciler": {
|
| 1234 |
+
"version": "0.32.3",
|
| 1235 |
+
"resolved": "https://registry.npmjs.org/@types/react-reconciler/-/react-reconciler-0.32.3.tgz",
|
| 1236 |
+
"integrity": "sha512-cMi5ZrLG7UtbL7LTK6hq9w/EZIRk4Mf1Z5qHoI+qBh7/WkYkFXQ7gOto2yfUvPzF5ERMAhaXS5eTQ2SAnHjLzA==",
|
| 1237 |
+
"license": "MIT",
|
| 1238 |
+
"peerDependencies": {
|
| 1239 |
+
"@types/react": "*"
|
| 1240 |
+
}
|
| 1241 |
+
},
|
| 1242 |
+
"node_modules/@types/webxr": {
|
| 1243 |
+
"version": "0.5.24",
|
| 1244 |
+
"resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.24.tgz",
|
| 1245 |
+
"integrity": "sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==",
|
| 1246 |
+
"license": "MIT"
|
| 1247 |
+
},
|
| 1248 |
+
"node_modules/@vitejs/plugin-react": {
|
| 1249 |
+
"version": "5.1.2",
|
| 1250 |
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.2.tgz",
|
| 1251 |
+
"integrity": "sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==",
|
| 1252 |
+
"dev": true,
|
| 1253 |
+
"license": "MIT",
|
| 1254 |
+
"dependencies": {
|
| 1255 |
+
"@babel/core": "^7.28.5",
|
| 1256 |
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
| 1257 |
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
| 1258 |
+
"@rolldown/pluginutils": "1.0.0-beta.53",
|
| 1259 |
+
"@types/babel__core": "^7.20.5",
|
| 1260 |
+
"react-refresh": "^0.18.0"
|
| 1261 |
+
},
|
| 1262 |
+
"engines": {
|
| 1263 |
+
"node": "^20.19.0 || >=22.12.0"
|
| 1264 |
+
},
|
| 1265 |
+
"peerDependencies": {
|
| 1266 |
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
| 1267 |
+
}
|
| 1268 |
+
},
|
| 1269 |
+
"node_modules/base64-js": {
|
| 1270 |
+
"version": "1.5.1",
|
| 1271 |
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
| 1272 |
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
| 1273 |
+
"funding": [
|
| 1274 |
+
{
|
| 1275 |
+
"type": "github",
|
| 1276 |
+
"url": "https://github.com/sponsors/feross"
|
| 1277 |
+
},
|
| 1278 |
+
{
|
| 1279 |
+
"type": "patreon",
|
| 1280 |
+
"url": "https://www.patreon.com/feross"
|
| 1281 |
+
},
|
| 1282 |
+
{
|
| 1283 |
+
"type": "consulting",
|
| 1284 |
+
"url": "https://feross.org/support"
|
| 1285 |
+
}
|
| 1286 |
+
],
|
| 1287 |
+
"license": "MIT"
|
| 1288 |
+
},
|
| 1289 |
+
"node_modules/baseline-browser-mapping": {
|
| 1290 |
+
"version": "2.9.11",
|
| 1291 |
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
|
| 1292 |
+
"integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
|
| 1293 |
+
"dev": true,
|
| 1294 |
+
"license": "Apache-2.0",
|
| 1295 |
+
"bin": {
|
| 1296 |
+
"baseline-browser-mapping": "dist/cli.js"
|
| 1297 |
+
}
|
| 1298 |
+
},
|
| 1299 |
+
"node_modules/browserslist": {
|
| 1300 |
+
"version": "4.28.1",
|
| 1301 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
|
| 1302 |
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
| 1303 |
+
"dev": true,
|
| 1304 |
+
"funding": [
|
| 1305 |
+
{
|
| 1306 |
+
"type": "opencollective",
|
| 1307 |
+
"url": "https://opencollective.com/browserslist"
|
| 1308 |
+
},
|
| 1309 |
+
{
|
| 1310 |
+
"type": "tidelift",
|
| 1311 |
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
| 1312 |
+
},
|
| 1313 |
+
{
|
| 1314 |
+
"type": "github",
|
| 1315 |
+
"url": "https://github.com/sponsors/ai"
|
| 1316 |
+
}
|
| 1317 |
+
],
|
| 1318 |
+
"license": "MIT",
|
| 1319 |
+
"dependencies": {
|
| 1320 |
+
"baseline-browser-mapping": "^2.9.0",
|
| 1321 |
+
"caniuse-lite": "^1.0.30001759",
|
| 1322 |
+
"electron-to-chromium": "^1.5.263",
|
| 1323 |
+
"node-releases": "^2.0.27",
|
| 1324 |
+
"update-browserslist-db": "^1.2.0"
|
| 1325 |
+
},
|
| 1326 |
+
"bin": {
|
| 1327 |
+
"browserslist": "cli.js"
|
| 1328 |
+
},
|
| 1329 |
+
"engines": {
|
| 1330 |
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
| 1331 |
+
}
|
| 1332 |
+
},
|
| 1333 |
+
"node_modules/buffer": {
|
| 1334 |
+
"version": "6.0.3",
|
| 1335 |
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
| 1336 |
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
| 1337 |
+
"funding": [
|
| 1338 |
+
{
|
| 1339 |
+
"type": "github",
|
| 1340 |
+
"url": "https://github.com/sponsors/feross"
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"type": "patreon",
|
| 1344 |
+
"url": "https://www.patreon.com/feross"
|
| 1345 |
+
},
|
| 1346 |
+
{
|
| 1347 |
+
"type": "consulting",
|
| 1348 |
+
"url": "https://feross.org/support"
|
| 1349 |
+
}
|
| 1350 |
+
],
|
| 1351 |
+
"license": "MIT",
|
| 1352 |
+
"dependencies": {
|
| 1353 |
+
"base64-js": "^1.3.1",
|
| 1354 |
+
"ieee754": "^1.2.1"
|
| 1355 |
+
}
|
| 1356 |
+
},
|
| 1357 |
+
"node_modules/caniuse-lite": {
|
| 1358 |
+
"version": "1.0.30001761",
|
| 1359 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001761.tgz",
|
| 1360 |
+
"integrity": "sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==",
|
| 1361 |
+
"dev": true,
|
| 1362 |
+
"funding": [
|
| 1363 |
+
{
|
| 1364 |
+
"type": "opencollective",
|
| 1365 |
+
"url": "https://opencollective.com/browserslist"
|
| 1366 |
+
},
|
| 1367 |
+
{
|
| 1368 |
+
"type": "tidelift",
|
| 1369 |
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"type": "github",
|
| 1373 |
+
"url": "https://github.com/sponsors/ai"
|
| 1374 |
+
}
|
| 1375 |
+
],
|
| 1376 |
+
"license": "CC-BY-4.0"
|
| 1377 |
+
},
|
| 1378 |
+
"node_modules/convert-source-map": {
|
| 1379 |
+
"version": "2.0.0",
|
| 1380 |
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
| 1381 |
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
| 1382 |
+
"dev": true,
|
| 1383 |
+
"license": "MIT"
|
| 1384 |
+
},
|
| 1385 |
+
"node_modules/debug": {
|
| 1386 |
+
"version": "4.4.3",
|
| 1387 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
| 1388 |
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
| 1389 |
+
"dev": true,
|
| 1390 |
+
"license": "MIT",
|
| 1391 |
+
"dependencies": {
|
| 1392 |
+
"ms": "^2.1.3"
|
| 1393 |
+
},
|
| 1394 |
+
"engines": {
|
| 1395 |
+
"node": ">=6.0"
|
| 1396 |
+
},
|
| 1397 |
+
"peerDependenciesMeta": {
|
| 1398 |
+
"supports-color": {
|
| 1399 |
+
"optional": true
|
| 1400 |
+
}
|
| 1401 |
+
}
|
| 1402 |
+
},
|
| 1403 |
+
"node_modules/electron-to-chromium": {
|
| 1404 |
+
"version": "1.5.267",
|
| 1405 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
|
| 1406 |
+
"integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
|
| 1407 |
+
"dev": true,
|
| 1408 |
+
"license": "ISC"
|
| 1409 |
+
},
|
| 1410 |
+
"node_modules/esbuild": {
|
| 1411 |
+
"version": "0.25.12",
|
| 1412 |
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
| 1413 |
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
| 1414 |
+
"dev": true,
|
| 1415 |
+
"hasInstallScript": true,
|
| 1416 |
+
"license": "MIT",
|
| 1417 |
+
"bin": {
|
| 1418 |
+
"esbuild": "bin/esbuild"
|
| 1419 |
+
},
|
| 1420 |
+
"engines": {
|
| 1421 |
+
"node": ">=18"
|
| 1422 |
+
},
|
| 1423 |
+
"optionalDependencies": {
|
| 1424 |
+
"@esbuild/aix-ppc64": "0.25.12",
|
| 1425 |
+
"@esbuild/android-arm": "0.25.12",
|
| 1426 |
+
"@esbuild/android-arm64": "0.25.12",
|
| 1427 |
+
"@esbuild/android-x64": "0.25.12",
|
| 1428 |
+
"@esbuild/darwin-arm64": "0.25.12",
|
| 1429 |
+
"@esbuild/darwin-x64": "0.25.12",
|
| 1430 |
+
"@esbuild/freebsd-arm64": "0.25.12",
|
| 1431 |
+
"@esbuild/freebsd-x64": "0.25.12",
|
| 1432 |
+
"@esbuild/linux-arm": "0.25.12",
|
| 1433 |
+
"@esbuild/linux-arm64": "0.25.12",
|
| 1434 |
+
"@esbuild/linux-ia32": "0.25.12",
|
| 1435 |
+
"@esbuild/linux-loong64": "0.25.12",
|
| 1436 |
+
"@esbuild/linux-mips64el": "0.25.12",
|
| 1437 |
+
"@esbuild/linux-ppc64": "0.25.12",
|
| 1438 |
+
"@esbuild/linux-riscv64": "0.25.12",
|
| 1439 |
+
"@esbuild/linux-s390x": "0.25.12",
|
| 1440 |
+
"@esbuild/linux-x64": "0.25.12",
|
| 1441 |
+
"@esbuild/netbsd-arm64": "0.25.12",
|
| 1442 |
+
"@esbuild/netbsd-x64": "0.25.12",
|
| 1443 |
+
"@esbuild/openbsd-arm64": "0.25.12",
|
| 1444 |
+
"@esbuild/openbsd-x64": "0.25.12",
|
| 1445 |
+
"@esbuild/openharmony-arm64": "0.25.12",
|
| 1446 |
+
"@esbuild/sunos-x64": "0.25.12",
|
| 1447 |
+
"@esbuild/win32-arm64": "0.25.12",
|
| 1448 |
+
"@esbuild/win32-ia32": "0.25.12",
|
| 1449 |
+
"@esbuild/win32-x64": "0.25.12"
|
| 1450 |
+
}
|
| 1451 |
+
},
|
| 1452 |
+
"node_modules/escalade": {
|
| 1453 |
+
"version": "3.2.0",
|
| 1454 |
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
| 1455 |
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
| 1456 |
+
"dev": true,
|
| 1457 |
+
"license": "MIT",
|
| 1458 |
+
"engines": {
|
| 1459 |
+
"node": ">=6"
|
| 1460 |
+
}
|
| 1461 |
+
},
|
| 1462 |
+
"node_modules/fdir": {
|
| 1463 |
+
"version": "6.5.0",
|
| 1464 |
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
| 1465 |
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
| 1466 |
+
"dev": true,
|
| 1467 |
+
"license": "MIT",
|
| 1468 |
+
"engines": {
|
| 1469 |
+
"node": ">=12.0.0"
|
| 1470 |
+
},
|
| 1471 |
+
"peerDependencies": {
|
| 1472 |
+
"picomatch": "^3 || ^4"
|
| 1473 |
+
},
|
| 1474 |
+
"peerDependenciesMeta": {
|
| 1475 |
+
"picomatch": {
|
| 1476 |
+
"optional": true
|
| 1477 |
+
}
|
| 1478 |
+
}
|
| 1479 |
+
},
|
| 1480 |
+
"node_modules/fsevents": {
|
| 1481 |
+
"version": "2.3.3",
|
| 1482 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
| 1483 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
| 1484 |
+
"dev": true,
|
| 1485 |
+
"hasInstallScript": true,
|
| 1486 |
+
"license": "MIT",
|
| 1487 |
+
"optional": true,
|
| 1488 |
+
"os": [
|
| 1489 |
+
"darwin"
|
| 1490 |
+
],
|
| 1491 |
+
"engines": {
|
| 1492 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
| 1493 |
+
}
|
| 1494 |
+
},
|
| 1495 |
+
"node_modules/gensync": {
|
| 1496 |
+
"version": "1.0.0-beta.2",
|
| 1497 |
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
| 1498 |
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
| 1499 |
+
"dev": true,
|
| 1500 |
+
"license": "MIT",
|
| 1501 |
+
"engines": {
|
| 1502 |
+
"node": ">=6.9.0"
|
| 1503 |
+
}
|
| 1504 |
+
},
|
| 1505 |
+
"node_modules/ieee754": {
|
| 1506 |
+
"version": "1.2.1",
|
| 1507 |
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
| 1508 |
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
| 1509 |
+
"funding": [
|
| 1510 |
+
{
|
| 1511 |
+
"type": "github",
|
| 1512 |
+
"url": "https://github.com/sponsors/feross"
|
| 1513 |
+
},
|
| 1514 |
+
{
|
| 1515 |
+
"type": "patreon",
|
| 1516 |
+
"url": "https://www.patreon.com/feross"
|
| 1517 |
+
},
|
| 1518 |
+
{
|
| 1519 |
+
"type": "consulting",
|
| 1520 |
+
"url": "https://feross.org/support"
|
| 1521 |
+
}
|
| 1522 |
+
],
|
| 1523 |
+
"license": "BSD-3-Clause"
|
| 1524 |
+
},
|
| 1525 |
+
"node_modules/its-fine": {
|
| 1526 |
+
"version": "2.0.0",
|
| 1527 |
+
"resolved": "https://registry.npmjs.org/its-fine/-/its-fine-2.0.0.tgz",
|
| 1528 |
+
"integrity": "sha512-KLViCmWx94zOvpLwSlsx6yOCeMhZYaxrJV87Po5k/FoZzcPSahvK5qJ7fYhS61sZi5ikmh2S3Hz55A2l3U69ng==",
|
| 1529 |
+
"license": "MIT",
|
| 1530 |
+
"dependencies": {
|
| 1531 |
+
"@types/react-reconciler": "^0.28.9"
|
| 1532 |
+
},
|
| 1533 |
+
"peerDependencies": {
|
| 1534 |
+
"react": "^19.0.0"
|
| 1535 |
+
}
|
| 1536 |
+
},
|
| 1537 |
+
"node_modules/its-fine/node_modules/@types/react-reconciler": {
|
| 1538 |
+
"version": "0.28.9",
|
| 1539 |
+
"resolved": "https://registry.npmjs.org/@types/react-reconciler/-/react-reconciler-0.28.9.tgz",
|
| 1540 |
+
"integrity": "sha512-HHM3nxyUZ3zAylX8ZEyrDNd2XZOnQ0D5XfunJF5FLQnZbHHYq4UWvW1QfelQNXv1ICNkwYhfxjwfnqivYB6bFg==",
|
| 1541 |
+
"license": "MIT",
|
| 1542 |
+
"peerDependencies": {
|
| 1543 |
+
"@types/react": "*"
|
| 1544 |
+
}
|
| 1545 |
+
},
|
| 1546 |
+
"node_modules/js-tokens": {
|
| 1547 |
+
"version": "4.0.0",
|
| 1548 |
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
| 1549 |
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
| 1550 |
+
"dev": true,
|
| 1551 |
+
"license": "MIT"
|
| 1552 |
+
},
|
| 1553 |
+
"node_modules/jsesc": {
|
| 1554 |
+
"version": "3.1.0",
|
| 1555 |
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
| 1556 |
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
| 1557 |
+
"dev": true,
|
| 1558 |
+
"license": "MIT",
|
| 1559 |
+
"bin": {
|
| 1560 |
+
"jsesc": "bin/jsesc"
|
| 1561 |
+
},
|
| 1562 |
+
"engines": {
|
| 1563 |
+
"node": ">=6"
|
| 1564 |
+
}
|
| 1565 |
+
},
|
| 1566 |
+
"node_modules/json5": {
|
| 1567 |
+
"version": "2.2.3",
|
| 1568 |
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
| 1569 |
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
| 1570 |
+
"dev": true,
|
| 1571 |
+
"license": "MIT",
|
| 1572 |
+
"bin": {
|
| 1573 |
+
"json5": "lib/cli.js"
|
| 1574 |
+
},
|
| 1575 |
+
"engines": {
|
| 1576 |
+
"node": ">=6"
|
| 1577 |
+
}
|
| 1578 |
+
},
|
| 1579 |
+
"node_modules/lru-cache": {
|
| 1580 |
+
"version": "5.1.1",
|
| 1581 |
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
| 1582 |
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
| 1583 |
+
"dev": true,
|
| 1584 |
+
"license": "ISC",
|
| 1585 |
+
"dependencies": {
|
| 1586 |
+
"yallist": "^3.0.2"
|
| 1587 |
+
}
|
| 1588 |
+
},
|
| 1589 |
+
"node_modules/ms": {
|
| 1590 |
+
"version": "2.1.3",
|
| 1591 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
| 1592 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
| 1593 |
+
"dev": true,
|
| 1594 |
+
"license": "MIT"
|
| 1595 |
+
},
|
| 1596 |
+
"node_modules/nanoid": {
|
| 1597 |
+
"version": "3.3.11",
|
| 1598 |
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
| 1599 |
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
| 1600 |
+
"dev": true,
|
| 1601 |
+
"funding": [
|
| 1602 |
+
{
|
| 1603 |
+
"type": "github",
|
| 1604 |
+
"url": "https://github.com/sponsors/ai"
|
| 1605 |
+
}
|
| 1606 |
+
],
|
| 1607 |
+
"license": "MIT",
|
| 1608 |
+
"bin": {
|
| 1609 |
+
"nanoid": "bin/nanoid.cjs"
|
| 1610 |
+
},
|
| 1611 |
+
"engines": {
|
| 1612 |
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
| 1613 |
+
}
|
| 1614 |
+
},
|
| 1615 |
+
"node_modules/node-releases": {
|
| 1616 |
+
"version": "2.0.27",
|
| 1617 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
| 1618 |
+
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
| 1619 |
+
"dev": true,
|
| 1620 |
+
"license": "MIT"
|
| 1621 |
+
},
|
| 1622 |
+
"node_modules/picocolors": {
|
| 1623 |
+
"version": "1.1.1",
|
| 1624 |
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
| 1625 |
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
| 1626 |
+
"dev": true,
|
| 1627 |
+
"license": "ISC"
|
| 1628 |
+
},
|
| 1629 |
+
"node_modules/picomatch": {
|
| 1630 |
+
"version": "4.0.3",
|
| 1631 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
| 1632 |
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
| 1633 |
+
"dev": true,
|
| 1634 |
+
"license": "MIT",
|
| 1635 |
+
"engines": {
|
| 1636 |
+
"node": ">=12"
|
| 1637 |
+
},
|
| 1638 |
+
"funding": {
|
| 1639 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
| 1640 |
+
}
|
| 1641 |
+
},
|
| 1642 |
+
"node_modules/postcss": {
|
| 1643 |
+
"version": "8.5.6",
|
| 1644 |
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
| 1645 |
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
| 1646 |
+
"dev": true,
|
| 1647 |
+
"funding": [
|
| 1648 |
+
{
|
| 1649 |
+
"type": "opencollective",
|
| 1650 |
+
"url": "https://opencollective.com/postcss/"
|
| 1651 |
+
},
|
| 1652 |
+
{
|
| 1653 |
+
"type": "tidelift",
|
| 1654 |
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
| 1655 |
+
},
|
| 1656 |
+
{
|
| 1657 |
+
"type": "github",
|
| 1658 |
+
"url": "https://github.com/sponsors/ai"
|
| 1659 |
+
}
|
| 1660 |
+
],
|
| 1661 |
+
"license": "MIT",
|
| 1662 |
+
"dependencies": {
|
| 1663 |
+
"nanoid": "^3.3.11",
|
| 1664 |
+
"picocolors": "^1.1.1",
|
| 1665 |
+
"source-map-js": "^1.2.1"
|
| 1666 |
+
},
|
| 1667 |
+
"engines": {
|
| 1668 |
+
"node": "^10 || ^12 || >=14"
|
| 1669 |
+
}
|
| 1670 |
+
},
|
| 1671 |
+
"node_modules/react": {
|
| 1672 |
+
"version": "19.2.3",
|
| 1673 |
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
|
| 1674 |
+
"integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
|
| 1675 |
+
"license": "MIT",
|
| 1676 |
+
"engines": {
|
| 1677 |
+
"node": ">=0.10.0"
|
| 1678 |
+
}
|
| 1679 |
+
},
|
| 1680 |
+
"node_modules/react-dom": {
|
| 1681 |
+
"version": "19.2.3",
|
| 1682 |
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.3.tgz",
|
| 1683 |
+
"integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==",
|
| 1684 |
+
"license": "MIT",
|
| 1685 |
+
"dependencies": {
|
| 1686 |
+
"scheduler": "^0.27.0"
|
| 1687 |
+
},
|
| 1688 |
+
"peerDependencies": {
|
| 1689 |
+
"react": "^19.2.3"
|
| 1690 |
+
}
|
| 1691 |
+
},
|
| 1692 |
+
"node_modules/react-dom/node_modules/scheduler": {
|
| 1693 |
+
"version": "0.27.0",
|
| 1694 |
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
| 1695 |
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
| 1696 |
+
"license": "MIT"
|
| 1697 |
+
},
|
| 1698 |
+
"node_modules/react-reconciler": {
|
| 1699 |
+
"version": "0.31.0",
|
| 1700 |
+
"resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.31.0.tgz",
|
| 1701 |
+
"integrity": "sha512-7Ob7Z+URmesIsIVRjnLoDGwBEG/tVitidU0nMsqX/eeJaLY89RISO/10ERe0MqmzuKUUB1rmY+h1itMbUHg9BQ==",
|
| 1702 |
+
"license": "MIT",
|
| 1703 |
+
"dependencies": {
|
| 1704 |
+
"scheduler": "^0.25.0"
|
| 1705 |
+
},
|
| 1706 |
+
"engines": {
|
| 1707 |
+
"node": ">=0.10.0"
|
| 1708 |
+
},
|
| 1709 |
+
"peerDependencies": {
|
| 1710 |
+
"react": "^19.0.0"
|
| 1711 |
+
}
|
| 1712 |
+
},
|
| 1713 |
+
"node_modules/react-refresh": {
|
| 1714 |
+
"version": "0.18.0",
|
| 1715 |
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
|
| 1716 |
+
"integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
|
| 1717 |
+
"dev": true,
|
| 1718 |
+
"license": "MIT",
|
| 1719 |
+
"engines": {
|
| 1720 |
+
"node": ">=0.10.0"
|
| 1721 |
+
}
|
| 1722 |
+
},
|
| 1723 |
+
"node_modules/react-use-measure": {
|
| 1724 |
+
"version": "2.1.7",
|
| 1725 |
+
"resolved": "https://registry.npmjs.org/react-use-measure/-/react-use-measure-2.1.7.tgz",
|
| 1726 |
+
"integrity": "sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==",
|
| 1727 |
+
"license": "MIT",
|
| 1728 |
+
"peerDependencies": {
|
| 1729 |
+
"react": ">=16.13",
|
| 1730 |
+
"react-dom": ">=16.13"
|
| 1731 |
+
},
|
| 1732 |
+
"peerDependenciesMeta": {
|
| 1733 |
+
"react-dom": {
|
| 1734 |
+
"optional": true
|
| 1735 |
+
}
|
| 1736 |
+
}
|
| 1737 |
+
},
|
| 1738 |
+
"node_modules/rollup": {
|
| 1739 |
+
"version": "4.53.5",
|
| 1740 |
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.5.tgz",
|
| 1741 |
+
"integrity": "sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==",
|
| 1742 |
+
"dev": true,
|
| 1743 |
+
"license": "MIT",
|
| 1744 |
+
"dependencies": {
|
| 1745 |
+
"@types/estree": "1.0.8"
|
| 1746 |
+
},
|
| 1747 |
+
"bin": {
|
| 1748 |
+
"rollup": "dist/bin/rollup"
|
| 1749 |
+
},
|
| 1750 |
+
"engines": {
|
| 1751 |
+
"node": ">=18.0.0",
|
| 1752 |
+
"npm": ">=8.0.0"
|
| 1753 |
+
},
|
| 1754 |
+
"optionalDependencies": {
|
| 1755 |
+
"@rollup/rollup-android-arm-eabi": "4.53.5",
|
| 1756 |
+
"@rollup/rollup-android-arm64": "4.53.5",
|
| 1757 |
+
"@rollup/rollup-darwin-arm64": "4.53.5",
|
| 1758 |
+
"@rollup/rollup-darwin-x64": "4.53.5",
|
| 1759 |
+
"@rollup/rollup-freebsd-arm64": "4.53.5",
|
| 1760 |
+
"@rollup/rollup-freebsd-x64": "4.53.5",
|
| 1761 |
+
"@rollup/rollup-linux-arm-gnueabihf": "4.53.5",
|
| 1762 |
+
"@rollup/rollup-linux-arm-musleabihf": "4.53.5",
|
| 1763 |
+
"@rollup/rollup-linux-arm64-gnu": "4.53.5",
|
| 1764 |
+
"@rollup/rollup-linux-arm64-musl": "4.53.5",
|
| 1765 |
+
"@rollup/rollup-linux-loong64-gnu": "4.53.5",
|
| 1766 |
+
"@rollup/rollup-linux-ppc64-gnu": "4.53.5",
|
| 1767 |
+
"@rollup/rollup-linux-riscv64-gnu": "4.53.5",
|
| 1768 |
+
"@rollup/rollup-linux-riscv64-musl": "4.53.5",
|
| 1769 |
+
"@rollup/rollup-linux-s390x-gnu": "4.53.5",
|
| 1770 |
+
"@rollup/rollup-linux-x64-gnu": "4.53.5",
|
| 1771 |
+
"@rollup/rollup-linux-x64-musl": "4.53.5",
|
| 1772 |
+
"@rollup/rollup-openharmony-arm64": "4.53.5",
|
| 1773 |
+
"@rollup/rollup-win32-arm64-msvc": "4.53.5",
|
| 1774 |
+
"@rollup/rollup-win32-ia32-msvc": "4.53.5",
|
| 1775 |
+
"@rollup/rollup-win32-x64-gnu": "4.53.5",
|
| 1776 |
+
"@rollup/rollup-win32-x64-msvc": "4.53.5",
|
| 1777 |
+
"fsevents": "~2.3.2"
|
| 1778 |
+
}
|
| 1779 |
+
},
|
| 1780 |
+
"node_modules/scheduler": {
|
| 1781 |
+
"version": "0.25.0",
|
| 1782 |
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz",
|
| 1783 |
+
"integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==",
|
| 1784 |
+
"license": "MIT"
|
| 1785 |
+
},
|
| 1786 |
+
"node_modules/semver": {
|
| 1787 |
+
"version": "6.3.1",
|
| 1788 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
| 1789 |
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
| 1790 |
+
"dev": true,
|
| 1791 |
+
"license": "ISC",
|
| 1792 |
+
"bin": {
|
| 1793 |
+
"semver": "bin/semver.js"
|
| 1794 |
+
}
|
| 1795 |
+
},
|
| 1796 |
+
"node_modules/source-map-js": {
|
| 1797 |
+
"version": "1.2.1",
|
| 1798 |
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
| 1799 |
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
| 1800 |
+
"dev": true,
|
| 1801 |
+
"license": "BSD-3-Clause",
|
| 1802 |
+
"engines": {
|
| 1803 |
+
"node": ">=0.10.0"
|
| 1804 |
+
}
|
| 1805 |
+
},
|
| 1806 |
+
"node_modules/suspend-react": {
|
| 1807 |
+
"version": "0.1.3",
|
| 1808 |
+
"resolved": "https://registry.npmjs.org/suspend-react/-/suspend-react-0.1.3.tgz",
|
| 1809 |
+
"integrity": "sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ==",
|
| 1810 |
+
"license": "MIT",
|
| 1811 |
+
"peerDependencies": {
|
| 1812 |
+
"react": ">=17.0"
|
| 1813 |
+
}
|
| 1814 |
+
},
|
| 1815 |
+
"node_modules/three": {
|
| 1816 |
+
"version": "0.182.0",
|
| 1817 |
+
"resolved": "https://registry.npmjs.org/three/-/three-0.182.0.tgz",
|
| 1818 |
+
"integrity": "sha512-GbHabT+Irv+ihI1/f5kIIsZ+Ef9Sl5A1Y7imvS5RQjWgtTPfPnZ43JmlYI7NtCRDK9zir20lQpfg8/9Yd02OvQ==",
|
| 1819 |
+
"license": "MIT"
|
| 1820 |
+
},
|
| 1821 |
+
"node_modules/tinyglobby": {
|
| 1822 |
+
"version": "0.2.15",
|
| 1823 |
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
| 1824 |
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
| 1825 |
+
"dev": true,
|
| 1826 |
+
"license": "MIT",
|
| 1827 |
+
"dependencies": {
|
| 1828 |
+
"fdir": "^6.5.0",
|
| 1829 |
+
"picomatch": "^4.0.3"
|
| 1830 |
+
},
|
| 1831 |
+
"engines": {
|
| 1832 |
+
"node": ">=12.0.0"
|
| 1833 |
+
},
|
| 1834 |
+
"funding": {
|
| 1835 |
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
| 1836 |
+
}
|
| 1837 |
+
},
|
| 1838 |
+
"node_modules/typescript": {
|
| 1839 |
+
"version": "5.8.3",
|
| 1840 |
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
| 1841 |
+
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
| 1842 |
+
"dev": true,
|
| 1843 |
+
"license": "Apache-2.0",
|
| 1844 |
+
"bin": {
|
| 1845 |
+
"tsc": "bin/tsc",
|
| 1846 |
+
"tsserver": "bin/tsserver"
|
| 1847 |
+
},
|
| 1848 |
+
"engines": {
|
| 1849 |
+
"node": ">=14.17"
|
| 1850 |
+
}
|
| 1851 |
+
},
|
| 1852 |
+
"node_modules/undici-types": {
|
| 1853 |
+
"version": "6.21.0",
|
| 1854 |
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
| 1855 |
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
| 1856 |
+
"dev": true,
|
| 1857 |
+
"license": "MIT"
|
| 1858 |
+
},
|
| 1859 |
+
"node_modules/update-browserslist-db": {
|
| 1860 |
+
"version": "1.2.3",
|
| 1861 |
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
|
| 1862 |
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
| 1863 |
+
"dev": true,
|
| 1864 |
+
"funding": [
|
| 1865 |
+
{
|
| 1866 |
+
"type": "opencollective",
|
| 1867 |
+
"url": "https://opencollective.com/browserslist"
|
| 1868 |
+
},
|
| 1869 |
+
{
|
| 1870 |
+
"type": "tidelift",
|
| 1871 |
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
| 1872 |
+
},
|
| 1873 |
+
{
|
| 1874 |
+
"type": "github",
|
| 1875 |
+
"url": "https://github.com/sponsors/ai"
|
| 1876 |
+
}
|
| 1877 |
+
],
|
| 1878 |
+
"license": "MIT",
|
| 1879 |
+
"dependencies": {
|
| 1880 |
+
"escalade": "^3.2.0",
|
| 1881 |
+
"picocolors": "^1.1.1"
|
| 1882 |
+
},
|
| 1883 |
+
"bin": {
|
| 1884 |
+
"update-browserslist-db": "cli.js"
|
| 1885 |
+
},
|
| 1886 |
+
"peerDependencies": {
|
| 1887 |
+
"browserslist": ">= 4.21.0"
|
| 1888 |
+
}
|
| 1889 |
+
},
|
| 1890 |
+
"node_modules/use-sync-external-store": {
|
| 1891 |
+
"version": "1.6.0",
|
| 1892 |
+
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
|
| 1893 |
+
"integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
|
| 1894 |
+
"license": "MIT",
|
| 1895 |
+
"peerDependencies": {
|
| 1896 |
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
| 1897 |
+
}
|
| 1898 |
+
},
|
| 1899 |
+
"node_modules/vite": {
|
| 1900 |
+
"version": "6.4.1",
|
| 1901 |
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
| 1902 |
+
"integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
|
| 1903 |
+
"dev": true,
|
| 1904 |
+
"license": "MIT",
|
| 1905 |
+
"dependencies": {
|
| 1906 |
+
"esbuild": "^0.25.0",
|
| 1907 |
+
"fdir": "^6.4.4",
|
| 1908 |
+
"picomatch": "^4.0.2",
|
| 1909 |
+
"postcss": "^8.5.3",
|
| 1910 |
+
"rollup": "^4.34.9",
|
| 1911 |
+
"tinyglobby": "^0.2.13"
|
| 1912 |
+
},
|
| 1913 |
+
"bin": {
|
| 1914 |
+
"vite": "bin/vite.js"
|
| 1915 |
+
},
|
| 1916 |
+
"engines": {
|
| 1917 |
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
| 1918 |
+
},
|
| 1919 |
+
"funding": {
|
| 1920 |
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
| 1921 |
+
},
|
| 1922 |
+
"optionalDependencies": {
|
| 1923 |
+
"fsevents": "~2.3.3"
|
| 1924 |
+
},
|
| 1925 |
+
"peerDependencies": {
|
| 1926 |
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
| 1927 |
+
"jiti": ">=1.21.0",
|
| 1928 |
+
"less": "*",
|
| 1929 |
+
"lightningcss": "^1.21.0",
|
| 1930 |
+
"sass": "*",
|
| 1931 |
+
"sass-embedded": "*",
|
| 1932 |
+
"stylus": "*",
|
| 1933 |
+
"sugarss": "*",
|
| 1934 |
+
"terser": "^5.16.0",
|
| 1935 |
+
"tsx": "^4.8.1",
|
| 1936 |
+
"yaml": "^2.4.2"
|
| 1937 |
+
},
|
| 1938 |
+
"peerDependenciesMeta": {
|
| 1939 |
+
"@types/node": {
|
| 1940 |
+
"optional": true
|
| 1941 |
+
},
|
| 1942 |
+
"jiti": {
|
| 1943 |
+
"optional": true
|
| 1944 |
+
},
|
| 1945 |
+
"less": {
|
| 1946 |
+
"optional": true
|
| 1947 |
+
},
|
| 1948 |
+
"lightningcss": {
|
| 1949 |
+
"optional": true
|
| 1950 |
+
},
|
| 1951 |
+
"sass": {
|
| 1952 |
+
"optional": true
|
| 1953 |
+
},
|
| 1954 |
+
"sass-embedded": {
|
| 1955 |
+
"optional": true
|
| 1956 |
+
},
|
| 1957 |
+
"stylus": {
|
| 1958 |
+
"optional": true
|
| 1959 |
+
},
|
| 1960 |
+
"sugarss": {
|
| 1961 |
+
"optional": true
|
| 1962 |
+
},
|
| 1963 |
+
"terser": {
|
| 1964 |
+
"optional": true
|
| 1965 |
+
},
|
| 1966 |
+
"tsx": {
|
| 1967 |
+
"optional": true
|
| 1968 |
+
},
|
| 1969 |
+
"yaml": {
|
| 1970 |
+
"optional": true
|
| 1971 |
+
}
|
| 1972 |
+
}
|
| 1973 |
+
},
|
| 1974 |
+
"node_modules/yallist": {
|
| 1975 |
+
"version": "3.1.1",
|
| 1976 |
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
| 1977 |
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
| 1978 |
+
"dev": true,
|
| 1979 |
+
"license": "ISC"
|
| 1980 |
+
},
|
| 1981 |
+
"node_modules/zustand": {
|
| 1982 |
+
"version": "5.0.9",
|
| 1983 |
+
"resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.9.tgz",
|
| 1984 |
+
"integrity": "sha512-ALBtUj0AfjJt3uNRQoL1tL2tMvj6Gp/6e39dnfT6uzpelGru8v1tPOGBzayOWbPJvujM8JojDk3E1LxeFisBNg==",
|
| 1985 |
+
"license": "MIT",
|
| 1986 |
+
"engines": {
|
| 1987 |
+
"node": ">=12.20.0"
|
| 1988 |
+
},
|
| 1989 |
+
"peerDependencies": {
|
| 1990 |
+
"@types/react": ">=18.0.0",
|
| 1991 |
+
"immer": ">=9.0.6",
|
| 1992 |
+
"react": ">=18.0.0",
|
| 1993 |
+
"use-sync-external-store": ">=1.2.0"
|
| 1994 |
+
},
|
| 1995 |
+
"peerDependenciesMeta": {
|
| 1996 |
+
"@types/react": {
|
| 1997 |
+
"optional": true
|
| 1998 |
+
},
|
| 1999 |
+
"immer": {
|
| 2000 |
+
"optional": true
|
| 2001 |
+
},
|
| 2002 |
+
"react": {
|
| 2003 |
+
"optional": true
|
| 2004 |
+
},
|
| 2005 |
+
"use-sync-external-store": {
|
| 2006 |
+
"optional": true
|
| 2007 |
+
}
|
| 2008 |
+
}
|
| 2009 |
+
}
|
| 2010 |
+
}
|
| 2011 |
+
}
|
package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "orbital-field",
|
| 3 |
+
"private": true,
|
| 4 |
+
"version": "0.0.0",
|
| 5 |
+
"type": "module",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"dev": "vite",
|
| 8 |
+
"build": "vite build",
|
| 9 |
+
"preview": "vite preview"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"three": "^0.182.0",
|
| 13 |
+
"@react-three/fiber": "^9.4.2",
|
| 14 |
+
"react-dom": "^19.2.3",
|
| 15 |
+
"react": "^19.2.3"
|
| 16 |
+
},
|
| 17 |
+
"devDependencies": {
|
| 18 |
+
"@types/node": "^22.14.0",
|
| 19 |
+
"@vitejs/plugin-react": "^5.0.0",
|
| 20 |
+
"typescript": "~5.8.2",
|
| 21 |
+
"vite": "^6.2.0"
|
| 22 |
+
}
|
| 23 |
+
}
|
public/audio/aditya.wav
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9aee8e736c4ac5d334690417c26a12135f9054d44a6a23bb6d3106c6019365a
|
| 3 |
+
size 666284
|
public/audio/aman.wav
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81e5da2b530c4a5dba4b6fc3ebb5868736ce1da02b2f068b81a1cbe4894894d8
|
| 3 |
+
size 487724
|
public/audio/tts.wav
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feda410207a5e11634974476de1bdc271b90e9940c1510dd87a3caee2d3b08f7
|
| 3 |
+
size 6460880
|
public/audio/yogiraj.wav
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3df21afd1e86ba929e3c13a4359b0ccd53d0228aaedfdf31cc888c81b4d0de4e
|
| 3 |
+
size 506924
|
tsconfig.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2022",
|
| 4 |
+
"experimentalDecorators": true,
|
| 5 |
+
"useDefineForClassFields": false,
|
| 6 |
+
"module": "ESNext",
|
| 7 |
+
"lib": [
|
| 8 |
+
"ES2022",
|
| 9 |
+
"DOM",
|
| 10 |
+
"DOM.Iterable"
|
| 11 |
+
],
|
| 12 |
+
"skipLibCheck": true,
|
| 13 |
+
"types": [
|
| 14 |
+
"node"
|
| 15 |
+
],
|
| 16 |
+
"moduleResolution": "bundler",
|
| 17 |
+
"isolatedModules": true,
|
| 18 |
+
"moduleDetection": "force",
|
| 19 |
+
"allowJs": true,
|
| 20 |
+
"jsx": "react-jsx",
|
| 21 |
+
"paths": {
|
| 22 |
+
"@/*": [
|
| 23 |
+
"./*"
|
| 24 |
+
]
|
| 25 |
+
},
|
| 26 |
+
"allowImportingTsExtensions": true,
|
| 27 |
+
"noEmit": true
|
| 28 |
+
}
|
| 29 |
+
}
|
vite.config.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import path from 'path';
|
| 2 |
+
import { defineConfig, loadEnv } from 'vite';
|
| 3 |
+
import react from '@vitejs/plugin-react';
|
| 4 |
+
|
| 5 |
+
export default defineConfig(({ mode }) => {
|
| 6 |
+
const env = loadEnv(mode, '.', '');
|
| 7 |
+
return {
|
| 8 |
+
server: {
|
| 9 |
+
port: 3000,
|
| 10 |
+
host: '0.0.0.0',
|
| 11 |
+
},
|
| 12 |
+
preview: {
|
| 13 |
+
host: true, // Listen on all addresses
|
| 14 |
+
port: 7860,
|
| 15 |
+
strictPort: true,
|
| 16 |
+
allowedHosts: ['antaram-trianglewebsite.hf.space'] // Add this line
|
| 17 |
+
},
|
| 18 |
+
plugins: [react()],
|
| 19 |
+
define: {
|
| 20 |
+
'process.env.API_KEY': JSON.stringify(env.GEMINI_API_KEY),
|
| 21 |
+
'process.env.GEMINI_API_KEY': JSON.stringify(env.GEMINI_API_KEY)
|
| 22 |
+
},
|
| 23 |
+
resolve: {
|
| 24 |
+
alias: {
|
| 25 |
+
'@': path.resolve(__dirname, '.'),
|
| 26 |
+
}
|
| 27 |
+
}
|
| 28 |
+
};
|
| 29 |
+
});
|