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
14 changes: 9 additions & 5 deletions frontend/packages/components/src/mdx/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import {
Icon,
faExclamationTriangle,
faInfoCircle,
faLightbulbOn,
Icon,
} from "@rivet-gg/icons";

import type { ComponentProps, PropsWithChildren, ReactNode } from "react";
import { CtaCard, CardGroup } from "../cta-card";
import { CardGroup, CtaCard } from "../cta-card";
import { cn } from "../lib/utils";
import { WithTooltip } from "../ui/tooltip";
import { Link } from "../ui/typography";
import { cn } from "../lib/utils";

// Custom CalloutBase component for dark backgrounds
const CalloutBase = ({
Expand Down Expand Up @@ -38,7 +38,12 @@ const CalloutBase = ({
<div className="flex-shrink-0 pt-0.5">
<Icon icon={icon} className={cn("w-5 h-5", iconColor)} />
</div>
<div className={cn("flex-1 prose-invert prose max-w-full w-full", textColor)}>
<div
className={cn(
"flex-1 prose-invert prose max-w-full w-full",
textColor,
)}
>
{children}
</div>
</div>
Expand Down Expand Up @@ -121,4 +126,3 @@ export const Note = ({ children }: { children: ReactNode }) => {

export { Step, Steps } from "../steps";
export * from "./tabs";
export * from "./code";
2 changes: 1 addition & 1 deletion frontend/packages/icons/manifest.json

Large diffs are not rendered by default.

35 changes: 20 additions & 15 deletions site/public/llms-full.txt

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

29 changes: 17 additions & 12 deletions 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.

7 changes: 6 additions & 1 deletion site/src/components/CollapsibleSidebarItem.tsx

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

12 changes: 11 additions & 1 deletion site/src/components/DocsNavigation.tsx

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

36 changes: 19 additions & 17 deletions site/src/components/docs/InstallPackage.tsx

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

2 changes: 1 addition & 1 deletion site/src/components/mdx.jsx

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

45 changes: 18 additions & 27 deletions site/src/components/v2/Code.tsx

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

15 changes: 15 additions & 0 deletions site/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { integrationGroups } from "@/data/integrations/shared";
import { deployOptions } from "@/data/deploy-options";
import {
faNodeJs,
faReact,
Expand Down Expand Up @@ -59,6 +60,20 @@ Rivet is a library for long-lived processes with durable state, realtime, and sc
</Card>
</CardGroup>

## Deploy Options

<CardGroup>
{deployOptions.map((option) => (
<Card
key={option.href}
title={option.title}
href={option.href}
icon={option.icon}
badge={option.badge}
/>
))}
</CardGroup>

## Integrations

{integrationGroups.map((group) => (
Expand Down
Loading
Loading