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

Practice and Exercises

Master Your Skills

Interactive exercises designed to reinforce your understanding of English law concepts.

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

{module.title}

{module.description}

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

))}

Open a module to start the full interactive flow

); }