import {Component} from '@angular/core'; import {PluginBaseComponent, PluginInfoCards, PluginURL} from "../../utils/base-plugin.component"; export class PluginLearnAndConnect{ title:string ="Learn & Connect with Open Science"; cardInfoArray:PluginInfoCards[] = [ {title: "OS Practices", description: "Open Science best practices for your community, policies and mandates.", urls:[ new PluginURL("","Learn more")], show:true}, {title: "OS Guides for beginners", description: "New to Open Science? Learn the basics!",urls:[ new PluginURL("","Learn more")], show:true}, {title: "Webinars", description: "Recordings and slides of webinars on different aspects of Open Science.",urls:[ new PluginURL("","Learn more")], show:true} ]; } @Component({ selector: 'plugin-learn-and-connect', templateUrl: 'plugin-learn-and-connect.component.html' }) export class PluginLearnAndConnectComponent extends PluginBaseComponent{ constructor() { super() } }