import React from "react"; import { Button } from "@katanemo/ui"; import Link from "next/link"; interface UnlockPotentialSectionProps { variant?: "transparent" | "black"; className?: string; } export function UnlockPotentialSection({ variant = "transparent", className = "", }: UnlockPotentialSectionProps) { const backgroundClass = variant === "black" ? "bg-[#1a1a1a]" : ""; const textColor = variant === "black" ? "text-white" : "text-black"; return (

Focus on prompting, not plumbing.
Build with{" "} plano, get started in less than a minute.

); }