Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ site/src/generated/
site/public/docs/
site/public/llms-full.txt
site/public/llms.txt
site/.playwright-mcp/
8 changes: 4 additions & 4 deletions frontend/packages/components/src/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@ export function Header({
</span>
</Button>
</SheetTrigger>
<SheetContent side="left" className="overflow-auto p-0">
<SheetContent side="left" className="overflow-auto p-0 [&>button]:fixed [&>button]:left-[calc(100vw-4rem)] [&>button]:top-4 [&>button]:bg-background/80 [&>button]:backdrop-blur [&>button]:border [&>button]:border-border/50 [&>button]:shadow-lg">
<nav className="min-h-full text-lg font-medium h-full max-w-full">
<div className="flex flex-col min-h-full">
<a
href="/"
className="flex sticky p-6 top-0 z-10 bg-background/10 backdrop-blur block w-full items-center gap-2 text-lg font-semibold"
className="hidden"
>
{logo}
</a>
<div className="flex flex-1 flex-col px-6 gap-6">
<div className="flex flex-1 flex-col px-4 py-4 gap-2">
{mobileBreadcrumbs}
</div>
<div className="px-6 py-6">{support}</div>
<div className="px-4 py-4">{support}</div>
</div>
</nav>
</SheetContent>
Expand Down
2 changes: 1 addition & 1 deletion site/src/app/(v2)/[section]/[[...page]]/page.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

167 changes: 87 additions & 80 deletions site/src/components/v2/Header.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions site/src/content/docs/deploy/vercel.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { InstallPackage } from "@/components/docs/InstallPackage";
import { faGitHub } from "@rivet-gg/icons";
import { faGithub } from "@rivet-gg/icons";

# Deploying to Vercel

Deploy your Next.js + RivetKit app to [Vercel](https://vercel.com/).

<CardGroup>
<Card title="View Example on GitHub" href="https://github.com/rivet-dev/rivetkit/tree/main/examples/next-js" target="_blank" icon={faGitHub}>
<Card title="View Example on GitHub" href="https://github.com/rivet-dev/rivetkit/tree/main/examples/next-js" target="_blank" icon={faGithub}>
Complete example Next.js + RivetKit app.
</Card>
</CardGroup>
Expand Down
2 changes: 1 addition & 1 deletion site/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Rivet is a library for long-lived processes with durable state, realtime, and sc
- **Elastic Scalability**: Scale from zero to millions without cold starts
- **Multi-Region Durable Storage**: Keep state & operations near your users or comply with data soveirgnty

## Tools
## Libraries

<CardGroup cols={2}>
<Card title="Actors" href="/docs/actors" icon={faActorsBorderless}>
Expand Down
2 changes: 1 addition & 1 deletion site/src/sitemap/mod.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading