Initial commit

Next.js + Express event management app for Hope Family Church.
This commit is contained in:
2026-07-23 15:26:47 +02:00
commit 3d381944d2
246 changed files with 57565 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { format, isValid } from "date-fns"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
export function formatDate(date: Date): string {
if (!isValid(date)) {
return "Invalid date"
}
return format(date, "MMMM d, yyyy")
}
export function formatCurrency(amount: number): string {
return new Intl.NumberFormat("en-ZA", {
style: "currency",
currency: "ZAR",
minimumFractionDigits: 2,
}).format(amount)
}
export function truncateText(text: string, maxLength: number): string {
if (text.length <= maxLength) return text
return `${text.slice(0, maxLength)}...`
}