migration correction et maj
Some checks failed
Build and Push App / build (push) Failing after 11m56s

This commit is contained in:
2026-05-03 23:15:14 +02:00
parent 5f421b418e
commit 16d66c0456
19 changed files with 1482 additions and 1355 deletions

View File

@@ -64,9 +64,12 @@ export interface Business {
verified: boolean;
viewCount: number;
rating: number;
ratingCount: number;
tags: string[];
isSuspended?: boolean;
suspensionReason?: string;
metaTitle?: string | null;
metaDescription?: string | null;
// New fields for "Entrepreneur of the Month"
isFeatured?: boolean;
@@ -147,3 +150,33 @@ export interface Event {
link?: string;
tags?: string[];
}
export interface BusinessCategory {
id: string;
name: string;
slug: string;
icon?: string;
isActive: boolean;
}
export interface SiteSetting {
id: string;
siteName: string;
siteSlogan: string;
contactEmail: string;
contactPhone?: string;
address?: string;
facebookUrl?: string;
twitterUrl?: string;
instagramUrl?: string;
linkedinUrl?: string;
footerText?: string;
homeBlogCount: number;
homeBlogShow: boolean;
homeBlogSubtitle: string;
homeBlogTitle: string;
homeBlogCategories: string[];
homeBlogIds: string[];
homeBlogSelection: string;
homeCategories: string[];
}