Skip to content

Commit

Permalink
Merge branch 'main' into blog-router-ts-performance
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanCassiere authored Sep 17, 2024
2 parents 79d2a7f + 60e9706 commit 359de94
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 29 deletions.
2 changes: 1 addition & 1 deletion app/libraries/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export type Library = {
ogImage?: string
bgStyle: string
textStyle: string
badge?: 'new' | 'soon'
badge?: 'new' | 'soon' | 'alpha' | 'beta'
repo: string
latestBranch: string
latestVersion: string
Expand Down
2 changes: 1 addition & 1 deletion app/libraries/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const startProject: Library = {
description: `Full-document SSR, Streaming, Server Functions, bundling and more, powered by TanStack Router, Vinxi, and Nitro and ready to deploy to your favorite hosting provider.`,
bgStyle: 'bg-cyan-500',
textStyle: 'text-cyan-500',
badge: 'soon',
badge: 'alpha',
repo: 'tanstack/start',
latestBranch: 'main',
latestVersion: 'v0',
Expand Down
41 changes: 21 additions & 20 deletions app/routes/_libraries.start.$version.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default function VersionIndex() {
dark:text-black bg-black dark:bg-white shadow-xl shadow-black/30 px-2 py-1 rounded-md
leading-none whitespace-nowrap"
>
It's Almost ready!
STATUS: ALPHA
{/* {version === 'latest' ? latestVersion : version} */}
</div>
{/* </div> */}
Expand Down Expand Up @@ -288,34 +288,35 @@ export default function VersionIndex() {
</div>
<div className="max-w-full p-8 w-[800px] mx-auto leading-loose space-y-4 bg-white dark:bg-gray-700 rounded-xl shadow-xl shadow-black/10">
<div>
<strong>TanStack Start </strong> is currently in development and is
almost ready for public use! We are working hard to bring you the
best possible experience and will be releasing more details soon. In
the meantime, you can follow along with the development process by
watching the commits on this very website!
</div>
<div>
Yes, you heard that right!{' '}
<strong>
TanStack.com is already being built and deployed using TanStack
Start
</strong>
! We are eating our own dog food and are excited to share the
results with you soon!
You can try <strong>TanStack Start ALPHA</strong> today! While
usable, it is still currently in development and is will still
undergo some breaking changes as we near BETA and gather feedback.
We invite at to try it out and provide feedback to help shape the
final product!
</div>
</div>
<div className="flex items-center gap-2 flex-wrap justify-center">
<div className="grid items-center gap-2 justify-center grid-cols-2 w-[600px] max-w-full mx-auto">
<Link
to="../../router/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`}
>
<VscPreview /> See an Example
</Link>
<Link
to="../../router/latest/docs/framework/react/start/overview"
className={`flex items-center gap-2 py-2 px-4 bg-cyan-800 rounded text-white uppercase font-extrabold`}
>
<FaBook /> Try the ALPHA
</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 /> View TanStack.com Source
<FaGithub /> TanStack.com Source
</a>
<a
href={`https://twitter.com/intent/post?text=${encodeURIComponent(
`I'm excited for TanStack Start, new full-stack React framework coming soon from team @Tan_Stack!
Check it out at https://tanstack.com/start/`
`TanStack Start is in ALPHA! 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`}
Expand Down
7 changes: 1 addition & 6 deletions app/routes/blog.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,7 @@ function BlogIndex() {
</div>
) : null}
<div className={`text-sm mt-2 text-black dark:text-white`}>
<Markdown
components={{
a: (props) => <span {...props} />,
}}
code={excerpt || ''}
/>
<Markdown code={excerpt || ''} />
</div>
</div>
<div>
Expand Down
2 changes: 1 addition & 1 deletion app/routes/blog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function Blog() {
<div className="min-h-screen flex flex-col lg:flex-row">
{smallMenu}
{largeMenu}
<div className="flex-1 min-h-0 flex flex-col">
<div className="flex-1 min-h-0 flex flex-col xl:pl-44 xl:pr-56">
<Outlet />
</div>
</div>
Expand Down
Binary file modified media/brand.sketch
Binary file not shown.

0 comments on commit 359de94

Please sign in to comment.