first commit

This commit is contained in:
2025-12-02 14:42:40 +05:30
commit e87bdd45a1
66 changed files with 9380 additions and 0 deletions

4
utils/slugify.ts Normal file
View File

@@ -0,0 +1,4 @@
// utils/slugify.ts
export const slugifyJob = (id: string, title: string) => {
return `${id}-${title.toLowerCase().replace(/\s+/g, "-").replace(/\//g, "-")}`;
};