"use client"
import { Gmail, GoogleDrive, Granola, MCPIcon, Notion } from "@ui/assets/icons"
import { GradientLogo } from "@ui/assets/Logo"
import { cn } from "@lib/utils"
import { SlackMark } from "@/components/brain-connector-icons"
import { dmSans125ClassName } from "@/lib/fonts"
export const CHECKOUT_RETURN_PARAM = "brainTrial"
const ORBIT = [
{ key: "slack", r: 74, deg: 0, node: },
{ key: "gmail", r: 74, deg: 128, node: },
{ key: "notion", r: 74, deg: 236, node: },
{ key: "drive", r: 112, deg: 58, node: },
{ key: "granola", r: 112, deg: 172, node: },
{ key: "mcp", r: 112, deg: 296, node: },
]
const SPIN = "motion-safe:animate-[spin_44s_linear_infinite]"
const SPIN_BACK = "motion-safe:animate-[spin_44s_linear_infinite_reverse]"
function BrainPanel() {
return (
{ORBIT.map(({ key, r, deg, node }) => (
{node}
))}
Meet @supermemory
)
}
// Trial checkout is disabled while new Company Brain signups are paused.
export function StepTrial(_props: { onActive: () => void }) {
return (
New signups are paused
Company Brain isn't accepting new workspaces right now. If you have
questions, reach us at support@supermemory.com.
)
}