classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

5
lib/constants.js Normal file
View File

@@ -0,0 +1,5 @@
export const SEO_REVALIDATE_SECONDS =
(Number(process.env.NEXT_PUBLIC_SEO_REVALIDATE_MINUTES) || 60) * 60;
export const SITEMAP_REVALIDATE_SECONDS = 604800;

8
lib/utils.js Normal file
View File

@@ -0,0 +1,8 @@
import { clsx } from "clsx";
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs));
}