import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Users, Briefcase, Zap, Target, Network, Sparkles, ArrowRight, Music, } from "lucide-react"; import { useNavigate } from "react-router-dom"; import { useEffect, useState, useRef } from "react"; import LoadingScreen from "@/components/LoadingScreen"; import { aethexToast } from "@/lib/aethex-toast"; export default function Nexus() { const navigate = useNavigate(); const [isLoading, setIsLoading] = useState(true); const toastShownRef = useRef(false); useEffect(() => { const timer = setTimeout(() => { setIsLoading(false); if (!toastShownRef.current) { aethexToast.system("Nexus talent marketplace connected"); toastShownRef.current = true; } }, 900); return () => clearTimeout(timer); }, []); if (isLoading) { return ( ); } const features = [ { icon: Users, title: "Discover Talent", description: "Browse creators across all AeThex arms with powerful filters and search.", }, { icon: Briefcase, title: "Post Opportunities", description: "Create job postings and collaboration requests for your team or studio.", }, { icon: Network, title: "Cross-Arm Integration", description: "Find talent from Labs, GameForge, Corp, Foundation, and DevConnect.", }, { icon: Sparkles, title: "Hybrid Marketplace", description: "Access both AeThex creators and DevConnect developers in one place.", }, { icon: Target, title: "Smart Matching", description: "Match opportunities with creators based on skills, experience, and interests.", }, { icon: Zap, title: "Instant Apply", description: "Apply for opportunities directly or track your applications in real-time.", }, ]; const stats = [ { label: "Active Creators", value: "1000+" }, { label: "Opportunities", value: "500+" }, { label: "Arms Connected", value: "5" }, { label: "Success Rate", value: "92%" }, ]; return (
{/* Animated backgrounds - Purple theme */}
{/* Hero Section */}
Nexus AeThex Nexus

The Talent Nexus

Connect creators with opportunities across all AeThex arms. Find talent, post jobs, and build amazing teams in a unified marketplace powered by both AeThex and DevConnect.

{/* Stats Section */}
{stats.map((stat) => (

{stat.value}

{stat.label}

))}
{/* Features Grid */}

Everything You Need

Connect creators with opportunities in a single, unified marketplace

{features.map((feature) => { const Icon = feature.icon; return ( {feature.title}

{feature.description}

); })}
{/* Ethos Audio Production Section */}
New: Audio Production

Ethos Guild - Audio & SFX Artists

Discover original music, sound effects, and audio composition services from Ethos Guild artists. Perfect for games, films, and commercial projects.

Browse Track Library

Access thousands of original tracks, SFX, and compositions available under ecosystem (free) or commercial licenses.

Hire Ethos Artists

Work with verified Ethos artists for custom compositions, game audio, and SFX design with transparent pricing and fast turnaround.

{/* Arms Integration Section */}

Multi-Arm Marketplace

Access talent and opportunities from all AeThex arms in one place

{[ { name: "Labs", emoji: "🔬", color: "yellow" }, { name: "GameForge", emoji: "🎮", color: "green" }, { name: "Corp", emoji: "💼", color: "blue" }, { name: "Foundation", emoji: "🎓", color: "red" }, { name: "DevConnect", emoji: "🌐", color: "purple" }, ].map((arm) => (

{arm.emoji}

{arm.name}

))}
{/* CTA Section */}

Ready to Connect?

Join the Nexus today and find your next opportunity or team member

); }