feat: implement home page, business directory, and administrative management features with updated schema and API routes
Some checks failed
Build and Push App / build (push) Failing after 51s

This commit is contained in:
2026-04-23 14:40:50 +02:00
parent 88e4c13b9f
commit e6310f30de
23 changed files with 1124 additions and 222 deletions

View File

@@ -41,6 +41,8 @@ export interface Business {
name: string;
slug?: string;
category: string;
categoryId?: string;
suggestedCategory?: string;
location: string; // Legacy: City, Country
countryId?: string;
country?: Country;
@@ -133,13 +135,3 @@ export interface Rating {
createdAt: string;
}
export const CATEGORIES = [
"Technologie & IT",
"Agriculture & Agrobusiness",
"Mode & Textile",
"Cosmétique & Beauté",
"Services aux entreprises",
"Restauration & Alimentation",
"Construction & BTP",
"Éducation & Formation"
];