alternative tangled frontend (extremely wip)

refactor: redo some parts

serenity bacc2013 ed75b5ac

+5 -3
+1 -1
src/routes/__root.tsx
··· 47 47 <head> 48 48 <HeadContent /> 49 49 </head> 50 - <body> 50 + <body className="dark:bg-strand-base bg-strand-subtext dark:text-strand-text text-strand-crust"> 51 51 {children} 52 52 <TanStackDevtools 53 53 config={{
+4 -2
src/routes/index.tsx
··· 4 4 5 5 function App() { 6 6 return ( 7 - <div className="min-h-screen bg-gradient-to-b from-slate-900 via-slate-800 to-slate-900"> 8 - <p>Woke</p> 7 + <div className="min-w-screen flex items-center justify-center"> 8 + <h1 className="text-xl font-bold"> 9 + The better frontend for the better forge. 10 + </h1> 9 11 </div> 10 12 ) 11 13 }