diff --git a/sharedComponents/other-portals/other-portals.component.html b/sharedComponents/other-portals/other-portals.component.html new file mode 100644 index 00000000..b05edfa7 --- /dev/null +++ b/sharedComponents/other-portals/other-portals.component.html @@ -0,0 +1,78 @@ +
+
+
+

+ Researcher? +

+
+ Explore all OA research results. Link all your research. Build your profile +
+

+ + OpenAIRE | EXPLORE + +

+
+
+
+
+

+ Content provider? +

+
+ Join OpenAIRE, use our tools and make your content more visible around the world. +
+

+ + OpenAIRE | PROVIDE + +

+
+
+
+
+

+ Research community? +

+
+ Use a trusted partner to share, link, disseminate and monitor your research. +
+

+ + OpenAIRE | CONNECT + +

+
+
+
+
+

+ Research manager? +

+
+ Use our monitoring services and easily track all relevant research results. +
+

+ + OpenAIRE | MONITOR + +

+
+
+
+
+

+ Developer? +

+
+ Get access to OpenAIRE data and capitalize on on Europe's open linked research +
+

+ + OpenAIRE | DEVELOP + +

+
+
+
diff --git a/sharedComponents/other-portals/other-portals.component.ts b/sharedComponents/other-portals/other-portals.component.ts new file mode 100644 index 00000000..5afa326f --- /dev/null +++ b/sharedComponents/other-portals/other-portals.component.ts @@ -0,0 +1,13 @@ +import {Component, Input} from '@angular/core'; +import {EnvProperties} from "../../utils/properties/env-properties"; + +@Component({ + selector: 'other-portals', + templateUrl: 'other-portals.component.html' +}) +export class OtherPortalsComponent { + @Input() portal = 'Connect'; + @Input() properties: EnvProperties = null; + + constructor() {} +} diff --git a/sharedComponents/other-portals/other-portals.module.ts b/sharedComponents/other-portals/other-portals.module.ts new file mode 100644 index 00000000..4871caa5 --- /dev/null +++ b/sharedComponents/other-portals/other-portals.module.ts @@ -0,0 +1,22 @@ +import {NgModule} from '@angular/core'; +import {CommonModule} from '@angular/common'; + +import {RouterModule} from "@angular/router"; + +import {OtherPortalsComponent} from './other-portals.component'; + +@NgModule({ + imports: [ + CommonModule, + RouterModule + ], + declarations: [ + OtherPortalsComponent + ], + providers: [], + exports: [ + OtherPortalsComponent + ] +}) +export class OtherPortalsModule { +}