Features: - User authentication via WorkOS (Apple, Google, Phone) - Daily check-in dialog for usage tracking - Calendar view with usage heatmap - Personalized reduction plan generator after 7 days of tracking - Custom OKLCH color theme with DM Sans and Space Mono fonts Tech stack: - Next.js 15 with App Router - Shadcn/UI components - Prisma with SQLite database - Tailwind CSS v4 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|