Marketplace Debug
Category data comparison and provider counts
Categories
5
Total Providers (Legacy)
198
Total Providers (New)
196
⚠️
Data Mismatch Detected
Some categories have missing or extra providers
| Category | Slug | Legacy | New | Status | Issues |
|---|---|---|---|---|---|
DJ & Muzik 3 subcategories | dj-muzik | 45 | 45 | Match | - |
Fotograf & Video 3 subcategories | fotograf-video | 78 | 78 | Match | - |
Catering | catering | 32 | 30 | -2 | 2 missing |
Dekorasyon | dekorasyon | 25 | 25 | Match | - |
Mekan | mekan | 18 | 18 | Match | - |
Subcategories
DJ & Muzik
DJ
djCanli Muzik
canli-muzikSes Sistemi
ses-sistemiFotograf & Video
Fotografci
fotografciVideografi
videografiDrone
droneFirestore Integration
This page uses static JSON data. To enable live Firestore data:
- Add Firebase credentials to environment variables
- Create adapter in
src/lib/firestore.ts - Replace JSON imports with Firestore queries
- Enable real-time listeners for live updates
// Example adapter interface
interface MarketplaceAdapter {
getCategories(): Promise<MarketplaceCategory[]>;
getProviderCount(categoryId: string): Promise<number>;
syncData(): Promise<void>;
}