fix: layout menues

This commit is contained in:
Sajad Mirjalili
2025-09-26 00:17:26 +03:30
parent d5531b2508
commit 7eb7192b05
9 changed files with 249 additions and 27 deletions

21
src/data/products.ts Normal file
View File

@@ -0,0 +1,21 @@
import Logo from '@/components/Logo';
import { type FC } from 'react';
export interface Product {
id: string;
titleKey: string;
descriptionKey: string;
LogoComponent: FC;
demoLink: string;
}
export const productsData: Product[] = [
{
id: 'harmony-club',
titleKey: 'products.harmonyClub.title',
descriptionKey: 'products.harmonyClub.description',
LogoComponent: Logo, // Reference the component
demoLink: '', // FIXME: update this url
},
// add more products here
];