Skip to content

Commit 9839668

Browse files
committed
fix: move the template name under tanstack start logo
1 parent b8cb2ce commit 9839668

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

packages/web/src/routes/index.tsx

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,21 @@ function App() {
6464
<div className="relative max-w-5xl mx-auto">
6565
<div className="flex items-center justify-center gap-6 mb-6">
6666
<img src="/tanstack-circle-logo.png" alt="TanStack Logo" className="w-24 h-24 md:w-32 md:h-32" />
67-
<h1 className="text-6xl md:text-7xl font-black text-white [letter-spacing:-0.08em]">
68-
<span className="text-gray-300">TANSTACK</span>{' '}
69-
<span className="bg-gradient-to-r from-cyan-400 to-blue-400 bg-clip-text text-transparent">START</span>
70-
</h1>
67+
<div className="flex flex-col">
68+
<h1 className="text-6xl md:text-7xl font-black text-white [letter-spacing:-0.08em]">
69+
<span className="text-gray-300">TANSTACK</span>{' '}
70+
<span className="bg-gradient-to-r from-cyan-400 to-blue-400 bg-clip-text text-transparent">START</span>
71+
</h1>
72+
<a
73+
href="https://github.com/roerohan/fullstack-monorepo-template"
74+
target="_blank"
75+
rel="noopener noreferrer"
76+
className="text-xl md:text-2xl text-gray-400 hover:text-cyan-400 transition-colors mt-1"
77+
>
78+
roerohan/fullstack-monorepo-template
79+
</a>
80+
</div>
7181
</div>
72-
<a
73-
href="https://github.com/roerohan/fullstack-monorepo-template"
74-
target="_blank"
75-
rel="noopener noreferrer"
76-
className="text-2xl md:text-3xl text-gray-300 mb-4 font-light hover:text-cyan-400 transition-colors inline-block"
77-
>
78-
roerohan/fullstack-monorepo-template
79-
</a>
8082
<p className="text-lg text-gray-400 max-w-3xl mx-auto mb-8">
8183
TanStack Start + Cloudflare Workers monorepo. Build modern fullstack applications with type-safe RPC,
8284
server functions, and edge deployment.

0 commit comments

Comments
 (0)