Demonstration - MaxiCode

Mainly used in the postal sector for letters and packaging.
Encodes a fixed amount of data; can encode postal addresses.
Follows the industry standard.
* 30 character limit for this demo.
import { BakeryColor, BakeryFont } from '@barcode-bakery/barcode-react';
import { BakeryMaxicode } from '@barcode-bakery/barcode-react/maxicode';

export default function Home() {
  const colorBlack = new BakeryColor(0, 0, 0);
  const colorWhite = new BakeryColor(255, 255, 255);

  return <BakeryMaxicode
    scale={2}
    foregroundColor={colorBlack}
    backgroundColor={colorWhite}
    text='Maxicode'
  >;
}