import styles from "./levelSummary.module.css" import type { LevelSummaryProps } from "@/types/components/content/blocks" export default function LevelSummary({ level, showDescription = true, }: LevelSummaryProps) { return (
{level.requirement} {showDescription && (

{level.description}

)}
) }