Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/routes/_libraries/start.$version.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,34 +111,34 @@ export default function VersionIndex() {
keeping up with the latest releases.
</div>
</div>
<div className="grid items-center gap-2 justify-center grid-cols-2 w-[600px] max-w-full mx-auto">
<div className="grid items-center gap-2 justify-center grid-cols-1 sm:grid-cols-2 w-[600px] max-w-full mx-auto">
<Link
to="/start/latest/docs/framework/react/examples/start-basic"
className={`flex items-center gap-2 py-2 px-4 bg-cyan-900 rounded text-white uppercase font-extrabold`}
className="flex items-center gap-2 py-2 px-4 bg-cyan-900 rounded text-white uppercase font-extrabold"
>
<VscPreview /> See an Example
<VscPreview className="min-w-4" /> See an Example
</Link>
<Link
to="/start/latest/docs/framework/react/overview"
className={`flex items-center gap-2 py-2 px-4 bg-cyan-800 rounded text-white uppercase font-extrabold`}
className="flex items-center gap-2 py-2 px-4 bg-cyan-800 rounded text-white uppercase font-extrabold"
>
<FaBook /> Try the BETA
<FaBook className="min-w-4" /> Try the BETA
</Link>
<a
href={`https://github.com/tanstack/tanstack.com`}
className={`flex items-center gap-2 py-2 px-4 bg-cyan-700 rounded text-white uppercase font-extrabold`}
>
<FaGithub /> TanStack.com Source
<FaGithub className="min-w-4" /> TanStack.com Source
</a>
<a
href={`https://twitter.com/intent/post?text=${encodeURIComponent(
`TanStack Start is in BETA! It's a new full-stack React framework from @Tan_Stack and you can check it out at https://tanstack.com/start/`
)}`}
target="_blank"
className={`flex items-center gap-2 py-2 px-4 bg-cyan-500 rounded text-white uppercase font-extrabold`}
className="flex items-center gap-2 py-2 px-4 bg-cyan-500 rounded text-white uppercase font-extrabold"
rel="noreferrer"
>
<FaTwitter /> Tweet about it!
<FaTwitter className="min-w-4" /> Tweet about it!
</a>{' '}
</div>
</div>
Expand Down
Loading