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
14 changes: 7 additions & 7 deletions src/routes/partners.railway.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ import * as React from 'react'
import { Link, createFileRoute } from '@tanstack/react-router'
import {
ArrowUpRightIcon,
ArrowUUpLeftIcon,
ChartLineIcon,
CheckIcon,
CurrencyDollarIcon as DollarSign,
CurrencyDollarIcon,
GitPullRequestIcon,
GlobeIcon,
InfinityIcon,
ChartLineIcon as LineChart,
NetworkIcon,
PlusIcon,
RocketIcon,
ShieldCheckIcon,
ArrowUUpLeftIcon as Undo2,
} from '@phosphor-icons/react'
import { twMerge } from 'tailwind-merge'
import { Card } from '~/components/Card'
Expand Down Expand Up @@ -85,7 +85,7 @@ const features: Array<{ Icon: FeatureIcon; title: string; desc: string }> = [
desc: 'Enable PR Environments on a GitHub-connected project to spin up isolated previews for eligible pull requests.',
},
{
Icon: LineChart,
Icon: ChartLineIcon,
title: 'Logs, metrics, and alerts',
desc: 'Logs and metrics are built in. Pro workspaces can configure Monitors that notify Slack, Discord, or email.',
},
Expand All @@ -95,7 +95,7 @@ const features: Array<{ Icon: FeatureIcon; title: string; desc: string }> = [
desc: 'Services in a project talk over private IPs at up to 100 Gbps. HTTP, TCP, gRPC, and WebSockets handled for you.',
},
{
Icon: Undo2,
Icon: ArrowUUpLeftIcon,
title: 'Retained deployment versions',
desc: 'Redeploy an earlier version while its image is retained. Retention ranges from 24 hours to 360 hours by plan.',
},
Expand Down Expand Up @@ -283,7 +283,7 @@ export const Route = createFileRoute('/partners/railway')({
function CheckBadge() {
return (
<span className="mt-0.5 inline-flex h-4 w-4 shrink-0 items-center justify-center rounded-full bg-emerald-500 text-white">
<CheckIcon className="h-2.5 w-2.5" strokeWidth={3} />
<CheckIcon className="h-2.5 w-2.5" weight="bold" />
</span>
)
}
Expand Down Expand Up @@ -673,7 +673,7 @@ function RailwayPartnerPage() {
<ArrowUpRightIcon className="h-4 w-4" />
</Button>
<span className="inline-flex items-center gap-1.5 text-xs text-gray-500 dark:text-gray-400">
<DollarSign className="h-3.5 w-3.5" />
<CurrencyDollarIcon className="h-3.5 w-3.5" />
Per-second billing, no credit card required
</span>
</div>
Expand Down
Loading