the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Show home page only when unauthenticated

+41 -37
+41 -37
apps/web/src/pages/home/Home.tsx
··· 43 43 }, [did, navigate]); 44 44 return ( 45 45 <> 46 - <div className="flex flex-col min-h-screen bg-base-100"> 47 - <Navbar /> 48 - <div className="flex-1"> 49 - <div className="max-w-[77%] m-auto mt-[5%] text-center"> 50 - <div className="flex justify-center"> 51 - <pre className="text-left">{banner}</pre> 52 - </div> 53 - <h1 className="mb-[10px] text-7xl mb-[20px] font-medium"> 54 - A Safe Space to Try Your Ideas 55 - </h1> 56 - <div className="text-purple-200 text-[18px] mb-[80px] font-medium"> 57 - Experiment with AI tools, prompts, and agents in a private 58 - sandbox. No setup, no risk - everything runs in a secure space 59 - that disappears when you're done. 60 - </div> 46 + {!isAuthenticated && ( 47 + <> 48 + <div className="flex flex-col min-h-screen bg-base-100"> 49 + <Navbar /> 50 + <div className="flex-1"> 51 + <div className="max-w-[77%] m-auto mt-[5%] text-center"> 52 + <div className="flex justify-center"> 53 + <pre className="text-left">{banner}</pre> 54 + </div> 55 + <h1 className="mb-[10px] text-7xl mb-[20px] font-medium"> 56 + A Safe Space to Try Your Ideas 57 + </h1> 58 + <div className="text-purple-200 text-[18px] mb-[80px] font-medium"> 59 + Experiment with AI tools, prompts, and agents in a private 60 + sandbox. No setup, no risk - everything runs in a secure space 61 + that disappears when you're done. 62 + </div> 61 63 62 - <div className="flex justify-center gap-[20px]"> 63 - <button 64 - className="btn bg-pink-500 border-none btn-xl font-bold" 65 - onClick={() => setModalOpen(true)} 66 - > 67 - Start For Free 68 - </button> 69 - <a 70 - href="https://docs.pocketenv.io" 71 - target="_blank" 72 - className="btn btn-outline border-white text-white btn-xl font-bold opacity-70 border-2 hover:opacity-100" 73 - > 74 - View Docs 75 - </a> 64 + <div className="flex justify-center gap-[20px]"> 65 + <button 66 + className="btn bg-pink-500 border-none btn-xl font-bold" 67 + onClick={() => setModalOpen(true)} 68 + > 69 + Start For Free 70 + </button> 71 + <a 72 + href="https://docs.pocketenv.io" 73 + target="_blank" 74 + className="btn btn-outline border-white text-white btn-xl font-bold opacity-70 border-2 hover:opacity-100" 75 + > 76 + View Docs 77 + </a> 78 + </div> 79 + </div> 76 80 </div> 77 81 </div> 78 - </div> 79 - </div> 80 - <NewProject 81 - isOpen={modalOpen} 82 - onClose={() => { 83 - setModalOpen(false); 84 - }} 85 - /> 82 + <NewProject 83 + isOpen={modalOpen} 84 + onClose={() => { 85 + setModalOpen(false); 86 + }} 87 + /> 88 + </> 89 + )} 86 90 </> 87 91 ); 88 92 }