const WEIGHTS = [ 200, 225, 250, 275, 300, 325, 350, 375, 400, 425, 450, 475, 500, 525, 550, 575, 600, 625, 650, 675, 700, ]; const SAMPLE_TEXT = "The quick brown fox jumps over the lazy dog 0123456789."; export default function Font() { return (

Commit Mono

{WEIGHTS.map((weight) => (
{weight} {SAMPLE_TEXT}
))}
); }