// @ts-nocheck
/** @jsxImportSource @opentui/solid */
import type { TuiPlugin } from "@opencode-ai/plugin/tui"

const id = "gentle-logo"
const compactArt = ["\u2726 Gentle AI \u2726"]

export default {
  id,
  init: () => {},
  render: () => ({ type: "text", content: compactArt[0] }),
} satisfies TuiPlugin
