ZeroZeeker/Pixel Goodies

Installation

Get up and running with the Monochrome Void system.

Create Project

Terminal
npx create-next-app@latest my-app --typescript --tailwind --eslint

Add Dependencies

npm install lucide-react animejs clsx tailwind-merge

Configure Utils

Add the cn utility for class merging.

lib/utils.ts
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}

You're ready to build into the void.