fix(templates): add six more templates (ticketit, snipe-it, refinerycms, comfortable-mexican-sofa, buddypress, lobsters) (#402)
BIN
src/assets/templates/buddypress-dark.png
Normal file
|
After Width: | Height: | Size: 417 KiB |
BIN
src/assets/templates/buddypress.png
Normal file
|
After Width: | Height: | Size: 496 KiB |
BIN
src/assets/templates/comfortable-mexican-sofa-db-dark.png
Normal file
|
After Width: | Height: | Size: 375 KiB |
BIN
src/assets/templates/comfortable-mexican-sofa-db.png
Normal file
|
After Width: | Height: | Size: 409 KiB |
BIN
src/assets/templates/lobsters-db-dark.png
Normal file
|
After Width: | Height: | Size: 403 KiB |
BIN
src/assets/templates/lobsters-db.png
Normal file
|
After Width: | Height: | Size: 450 KiB |
BIN
src/assets/templates/refinerycms-db-dark.png
Normal file
|
After Width: | Height: | Size: 414 KiB |
BIN
src/assets/templates/refinerycms-db.png
Normal file
|
After Width: | Height: | Size: 434 KiB |
BIN
src/assets/templates/snipe-it-db-dark.png
Normal file
|
After Width: | Height: | Size: 383 KiB |
BIN
src/assets/templates/snipe-it-db.png
Normal file
|
After Width: | Height: | Size: 428 KiB |
BIN
src/assets/templates/ticketit-db-dark.png
Normal file
|
After Width: | Height: | Size: 337 KiB |
BIN
src/assets/templates/ticketit-db.png
Normal file
|
After Width: | Height: | Size: 374 KiB |
@@ -14,6 +14,12 @@ import { voyagerDb } from './templates/voyager-db';
|
||||
import { koelDb } from './templates/koel-db';
|
||||
import { laravelPermissionDb } from './templates/laravel-permission-db';
|
||||
import { gravityDb } from './templates/gravity-db';
|
||||
import { ticketitDb } from './templates/ticketit-db';
|
||||
import { lobstersDb } from './templates/lobsters-db';
|
||||
import { refinerycmsDb } from './templates/refinerycms-db';
|
||||
import { buddypressDb } from './templates/buddypress-db';
|
||||
import { snipeItDb } from './templates/snipe-it-db';
|
||||
import { ComfortableMexicanSofaDb } from './templates/comfortable-mexican-sofa-db';
|
||||
|
||||
export interface Template {
|
||||
slug: string;
|
||||
@@ -44,4 +50,10 @@ export const templates: Template[] = [
|
||||
koelDb,
|
||||
laravelPermissionDb,
|
||||
gravityDb,
|
||||
ticketitDb,
|
||||
lobstersDb,
|
||||
refinerycmsDb,
|
||||
buddypressDb,
|
||||
snipeItDb,
|
||||
ComfortableMexicanSofaDb,
|
||||
];
|
||||
|
||||