← Projects

Zadnja Klupa

A custom-made font. "Zadnja klupa" means "last bench" in Serbian. I got the inspiration in high school looking at names carved into the last bench, hence the name ZadnjaKlupa (Last Bench).

The quick brown fox jumps over the lazy dog

Љубазни фењерџија чађавог лица хоће да ми покаже штос.

The quick brown fox jumps over the lazy dog

Љубазни фењерџија чађавог лица хоће да ми покаже штос.

function craftBench(name) {
  const carved = name.trim();
  return carved.length > 0
    ? `${carved} was here`
    : null;
}