diff --git a/src/app/linking/linkingHome.component.ts b/src/app/linking/linkingHome.component.ts new file mode 100644 index 00000000..ecf08bba --- /dev/null +++ b/src/app/linking/linkingHome.component.ts @@ -0,0 +1,51 @@ +import {Component} from '@angular/core'; +import {RouteConfig, ROUTER_DIRECTIVES, Router} from '@angular/router-deprecated'; +import {JSONP_PROVIDERS} from '@angular/http'; +import {Observable} from 'rxjs/Observable'; + +@Component({ + selector: 'linking-home', + template: ` +
+ + +
+
+
+ +
+

Link with project

+

Link your research result with funded projects.

+ Link with project + +
+
+
+
+

Link with Community

+

Link your research result with research communities.

+ Link with community + +
+
+
+
+

Link with Software

+

....

+ Link with software + +
+
+
+
+
`, + directives: [ + ...ROUTER_DIRECTIVES + ], +}) + +export class LinkingHomeComponent { + +}