fix: layout menues
This commit is contained in:
21
src/data/products.ts
Normal file
21
src/data/products.ts
Normal 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
|
||||
];
|
||||
Reference in New Issue
Block a user