import { A, useSearchParams } from "@solidjs/router" import { Title } from "@solidjs/meta" import { createMemo, createSignal, For, Match, Show, Switch } from "solid-js" import { PlanIcon, plans } from "./common" export default function Black() { const [params] = useSearchParams() const [selected, setSelected] = createSignal((params.plan as string) || null) const selectedPlan = createMemo(() => plans.find((p) => p.id === selected())) return ( <> opencode
{(plan) => ( )}

Prices shown don't include applicable tax · Terms of Service

{(plan) => (

${plan().id}{" "} per person billed monthly {plan().multiplier}

  • Your subscription will not start immediately
  • You will be added to the waitlist and activated soon
  • Your card will be only charged when your subscription is activated
  • Usage limits apply, heavily automated use may reach limits sooner
  • Subscriptions for individuals, contact Enterprise for teams
  • Limits may be adjusted and plans may be discontinued in the future
  • Cancel your subscription at anytime
Continue

Prices shown don't include applicable tax · Terms of Service

)}
) }