fix: border color of dark mode

This commit is contained in:
Sajad Mirjalili
2025-09-26 10:52:38 +03:30
parent 7eb7192b05
commit 86bca4d4a6
13 changed files with 37 additions and 20 deletions

View File

@@ -6,7 +6,7 @@ export interface Product {
titleKey: string;
descriptionKey: string;
LogoComponent: FC;
demoLink: string;
demoLink: string | null;
}
export const productsData: Product[] = [
@@ -15,7 +15,7 @@ export const productsData: Product[] = [
titleKey: 'products.harmonyClub.title',
descriptionKey: 'products.harmonyClub.description',
LogoComponent: Logo, // Reference the component
demoLink: '', // FIXME: update this url
demoLink: null, // FIXME: update this url
},
// add more products here
];