1- import { CheckIcon , XMarkIcon } from "@heroicons/react/20/solid" ;
2- import { IconCrown , IconTallymark4 } from "@tabler/icons-react" ;
3- import { Gauge , Gem } from "lucide-react" ;
1+ import { CheckIcon } from "@heroicons/react/20/solid" ;
42import { type MetaFunction } from "@remix-run/react" ;
53import { type LoaderFunctionArgs } from "@remix-run/server-runtime" ;
4+ import { IconCardsFilled , IconDiamondFilled , IconTallymark4 } from "@tabler/icons-react" ;
65import { tryCatch } from "@trigger.dev/core" ;
6+ import { Gauge } from "lucide-react" ;
77import { typedjson , useTypedLoaderData } from "remix-typedjson" ;
8+ import { ConcurrencyIcon } from "~/assets/icons/ConcurrencyIcon" ;
89import { AdminDebugTooltip } from "~/components/admin/debugTooltip" ;
9- import { EnvironmentSelector } from "~/components/navigation/EnvironmentSelector" ;
10- import { PageBody , PageContainer } from "~/components/layout/AppLayout" ;
1110import { Feedback } from "~/components/Feedback" ;
11+ import { PageBody , PageContainer } from "~/components/layout/AppLayout" ;
12+ import { EnvironmentSelector } from "~/components/navigation/EnvironmentSelector" ;
1213import { Badge } from "~/components/primitives/Badge" ;
1314import { Button , LinkButton } from "~/components/primitives/Buttons" ;
1415import { Header2 } from "~/components/primitives/Headers" ;
@@ -44,7 +45,6 @@ import {
4445 EnvironmentParamSchema ,
4546 organizationBillingPath ,
4647} from "~/utils/pathBuilder" ;
47- import { ConcurrencyIcon } from "~/assets/icons/ConcurrencyIcon" ;
4848
4949export const meta : MetaFunction = ( ) => {
5050 return [
@@ -179,7 +179,7 @@ function CurrentPlanSection({
179179 return (
180180 < div className = "flex flex-col gap-3" >
181181 < Header2 className = "flex items-center gap-1" >
182- < IconCrown className = "size-6 text-amber-400" />
182+ < IconCardsFilled className = "size-5 text-amber-400" />
183183 Current plan
184184 </ Header2 >
185185 < Table variant = "bright/no-hover" >
@@ -194,7 +194,7 @@ function CurrentPlanSection({
194194 />
195195 ) : (
196196 < LinkButton to = { billingPath } variant = "secondary/small" >
197- View plans to upgrade
197+ View plans
198198 </ LinkButton >
199199 ) }
200200 </ TableCell >
@@ -634,7 +634,7 @@ function FeaturesSection({
634634 return (
635635 < div className = "flex flex-col gap-3" >
636636 < Header2 className = "flex items-center gap-1.5" >
637- < Gem className = "size-5 text-emerald-500 " />
637+ < IconDiamondFilled className = "size-5 text-green-600 " />
638638 Plan features
639639 </ Header2 >
640640 < Table variant = "bright/no-hover" >
0 commit comments