tangled
alpha
login
or
join now
isuggest.selfce.st
/
strand
3
fork
atom
alternative tangled frontend (extremely wip)
3
fork
atom
overview
issues
pulls
pipelines
refactor: redo some parts
serenity
2 months ago
bacc2013
ed75b5ac
+5
-3
2 changed files
expand all
collapse all
unified
split
src
routes
__root.tsx
index.tsx
+1
-1
src/routes/__root.tsx
···
47
47
<head>
48
48
<HeadContent />
49
49
</head>
50
50
-
<body>
50
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
7
-
<div className="min-h-screen bg-gradient-to-b from-slate-900 via-slate-800 to-slate-900">
8
8
-
<p>Woke</p>
7
7
+
<div className="min-w-screen flex items-center justify-center">
8
8
+
<h1 className="text-xl font-bold">
9
9
+
The better frontend for the better forge.
10
10
+
</h1>
9
11
</div>
10
12
)
11
13
}