import { HelpCircle } from 'lucide-react';
import { useI18n } from '@/lib/hooks/use-i18n';
import { HoverCard, HoverCardTrigger, HoverCardContent } from '@/components/ui/hover-card';
/**
* Inline guide shown below the role selection cards.
* Hover to reveal the 3-step PBL workflow as a popover above.
*/
export function PBLGuideInline() {
const { t } = useI18n();
return (
{t('pbl.guide.step1.desc')}
{t('pbl.guide.step2.desc')}
{t('pbl.guide.step2.s1.desc')}
@question
{t('pbl.guide.step2.s2.example')}
{t('pbl.guide.step2.s2.desc')}
@judge
{t('pbl.guide.step2.s3.example')}
{t('pbl.guide.step2.s3.desc')}
{t('pbl.guide.step3.desc')}