🚀 release: v3.0.0

This commit is contained in:
Amruth Pillai
2022-03-02 17:44:11 +01:00
parent 2175256310
commit 295172687b
352 changed files with 30932 additions and 0 deletions

View File

@ -0,0 +1,56 @@
import { PageProps } from '@/utils/template';
import Castform from './Castform/Castform';
import Gengar from './Gengar/Gengar';
import Glalie from './Glalie/Glalie';
import Kakuna from './Kakuna/Kakuna';
import Onyx from './Onyx/Onyx';
import Pikachu from './Pikachu/Pikachu';
export type TemplateMeta = {
id: string;
name: string;
preview: string;
component: React.FC<PageProps>;
};
const templateMap: Record<string, TemplateMeta> = {
kakuna: {
id: 'kakuna',
name: 'Kakuna',
preview: require('./Kakuna/preview.jpg'),
component: Kakuna,
},
onyx: {
id: 'onyx',
name: 'Onyx',
preview: require('./Onyx/preview.jpg'),
component: Onyx,
},
pikachu: {
id: 'pikachu',
name: 'Pikachu',
preview: require('./Pikachu/preview.jpg'),
component: Pikachu,
},
gengar: {
id: 'gengar',
name: 'Gengar',
preview: require('./Gengar/preview.jpg'),
component: Gengar,
},
castform: {
id: 'castform',
name: 'Castform',
preview: require('./Castform/preview.jpg'),
component: Castform,
},
glalie: {
id: 'glalie',
name: 'Glalie',
preview: require('./Glalie/preview.jpg'),
component: Glalie,
},
};
export default templateMap;