Foundation
Installation
Get up and running with the Monochrome Void system.
1Create Project
Terminal
npx create-next-app@latest my-app --typescript --tailwind --eslint2Add Dependencies
npm install lucide-react animejs clsx tailwind-merge3Configure Utils
Add the cn utility for class merging.
lib/utils.tsimport { 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.