From 85d597d00d7d3ffe026abf7ed935d20dc84f0bdb Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 19:43:30 +0000 Subject: [PATCH] completionId: cgen-1caef4bb0b134361a75321f72533f720 cgen-1caef4bb0b134361a75321f72533f720 --- client/pages/Nexus.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/client/pages/Nexus.tsx b/client/pages/Nexus.tsx index 2f231939..8528b3a1 100644 --- a/client/pages/Nexus.tsx +++ b/client/pages/Nexus.tsx @@ -12,9 +12,37 @@ import { ArrowRight, } 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 = [ {