📱mobile responsiveness for navbar Menu

This commit is contained in:
RJ
2025-12-05 15:51:16 +02:00
parent bba507a7e8
commit 919e638144
8 changed files with 355 additions and 27 deletions

View File

@@ -79,3 +79,7 @@ export function generateSlug(title: string): string {
.replace(/[^a-z0-9]+/g, '-')
.replace(/^-+|-+$/g, '')
}
export function cn(...inputs: (string | undefined | null | false)[]): string {
return inputs.filter(Boolean).join(" ")
}