fix: base component dirs, remove duplicate component instance
This commit is contained in:
21
src/data/products.tsx
Normal file
21
src/data/products.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import Logo from '@/components/Logo';
|
||||
import type { ReactElement } from 'react';
|
||||
|
||||
export interface Product {
|
||||
id: string;
|
||||
titleKey: string;
|
||||
descriptionKey: string;
|
||||
LogoComponent: ReactElement;
|
||||
demoLink: string;
|
||||
}
|
||||
|
||||
export const productsData: Product[] = [
|
||||
{
|
||||
id: 'harmony-club',
|
||||
titleKey: 'products.harmonyClub.title',
|
||||
descriptionKey: 'products.harmonyClub.description',
|
||||
LogoComponent: <Logo isIcon boxSx={{ width: 69, height: 55 }} />, // Reference the component
|
||||
demoLink: '', // FIXME: update this url
|
||||
},
|
||||
// add more products here
|
||||
];
|
||||
Reference in New Issue
Block a user