import { BellAlertIcon, BookOpenIcon, ClockIcon, InformationCircleIcon, PlusIcon, RocketLaunchIcon, ServerStackIcon, Squares2X2Icon, } from "@heroicons/react/20/solid"; import { TaskIcon } from "~/assets/icons/TaskIcon"; import { LinkButton } from "~/components/primitives/Buttons"; import { InfoPanel } from "~/components/primitives/InfoPanel"; export default function Story() { return (
{/* Basic Info Panel */} This is a basic info panel with title and default variant {/* Info Panel with Button */} Learn More } > This panel includes a button in the top-right corner {/* Upgrade Variant with Button */} Upgrade Now } > This panel uses the upgrade variant with a call-to-action button {/* Minimal Variant */} A minimal variant without a title {/* Task Panel with Action */} View Tasks } > A panel showing task information with a view action {/* Getting Started Panel */} Start Tutorial } > Begin your journey with our quick start guide {/* Deployment Panel with Button */} Deploy Now } > Ready to deploy your changes to production {/* Create New Panel */} New Project } > Start a new project with our guided setup {/* Batches Panel */} Information about batch processing {/* Documentation Panel with Link */} View Docs } > Access our comprehensive documentation
); }