dev vouch dev on at. thats about it atvouch.dev
8
fork

Configure Feed

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

add footer bc i can

Luna efa59600 4111e06a

+21
+11
frontend/src/App.css
··· 372 372 opacity: 1; 373 373 } 374 374 375 + /* ── footer ── */ 376 + 377 + .footer { 378 + margin-top: 3rem; 379 + padding-top: 1rem; 380 + border-top: 1px solid var(--border); 381 + color: var(--text-dim); 382 + font-size: 12px; 383 + text-align: center; 384 + } 385 + 375 386 /* ── responsive ── */ 376 387 377 388 @media (max-width: 640px) {
+10
frontend/src/App.tsx
··· 100 100 ) : ( 101 101 <Dashboard agent={agent} onLogout={handleLogout} /> 102 102 )} 103 + <footer className="footer"> 104 + powered by{" "} 105 + <a href="https://microcosm.blue" target="_blank" rel="noopener noreferrer"> 106 + microcosm 107 + </a>{" "} 108 + and{" "} 109 + <a href="https://wisp.place" target="_blank" rel="noopener noreferrer"> 110 + wisp.place 111 + </a> 112 + </footer> 103 113 </div> 104 114 ); 105 115 }