openaire-library/dashboard/plugins/components/how-to-use/plugin-how-to-use.component.ts

20 lines
1012 B
TypeScript

import {Component} from '@angular/core';
import {PluginBaseComponent, PluginInfoCards, PluginURL} from "../../utils/base-plugin.component";
export class PluginHowToUse{
title:string ="How to use the gateway?";
cardInfoArray: PluginInfoCards[] = [
{title: "Tutorials", description: "The mini-video tutorials can help you find quick answers on specific gateway functionalities.", urls:[ new PluginURL("","View all")], show:true},
{title: "Guides", description: "Textual guides to all gateway functionalities.", urls:[ new PluginURL("","Guide for the users"), new PluginURL("","Guide for the managers")], show:true},
{title: "Webinars", description: "Recordings and slides of webinars on different aspects of Open Science.", urls:[ new PluginURL("","View all")], show:true}
];
}
@Component({
selector: 'plugin-how-to-use',
templateUrl: 'plugin-how-to-use.component.html'
})
export class PluginHowToUseComponent extends PluginBaseComponent<PluginHowToUse>{
constructor() {
super()
}
}