import Link from "next/link"; import { mockPracticeModules } from "@/lib/data/mockPractice"; export default function PracticePage() { return (

Practice and Exercises

Build confidence through short practice sessions

Train legal vocabulary, clause analysis, and case reasoning with quick modules you can complete in minutes.

Practice Overview

{mockPracticeModules.length} modules

Interactive now: {mockPracticeModules.filter((item) => item.isInteractive).length}

Coming soon: {mockPracticeModules.filter((item) => !item.isInteractive).length}

{mockPracticeModules.map((module, index) => (
{index === 0 ? "A/" : index === 1 ? "[]" : "O"}
{module.questions?.length ? `${module.questions.length} questions` : "Scaffolded"}

{module.title}

{module.description}

{module.isInteractive ? "Interactive now" : "Coming soon"}

))}

Open a module to start the full interactive flow

); }