diff --git a/src/main/java/io/bssw/psip/ui/views/Home.java b/src/main/java/io/bssw/psip/ui/views/Home.java index cc842b3..acb1f6c 100755 --- a/src/main/java/io/bssw/psip/ui/views/Home.java +++ b/src/main/java/io/bssw/psip/ui/views/Home.java @@ -34,6 +34,8 @@ import com.vaadin.flow.component.html.Anchor; import com.vaadin.flow.component.html.Div; import com.vaadin.flow.component.html.Emphasis; +import com.vaadin.flow.component.html.H2; +import com.vaadin.flow.component.html.Image; import com.vaadin.flow.component.html.ListItem; import com.vaadin.flow.component.html.Paragraph; import com.vaadin.flow.component.html.UnorderedList; @@ -62,6 +64,8 @@ public Home() { private Component createContent() { Div intro = new Div(); + intro.add(new Image(UIUtils.IMG_PATH + "logos/ryp_logo.png", "Rate Your Project")); + intro.add(new H2("A self assessment tool for improving software practices")); intro.add(new Paragraph("Software engineering is a systematic approach to the design, development, and maintenance of a software system. " + "Teams seldom have the time to stop development and focus solely on improving productivity or sustainability. However, " + "teams can incorporate improvements on the way to developing new science capabilities.")); diff --git a/src/main/resources/META-INF/resources/images/logos/ryp_logo.png b/src/main/resources/META-INF/resources/images/logos/ryp_logo.png new file mode 100644 index 0000000..f5dcac5 Binary files /dev/null and b/src/main/resources/META-INF/resources/images/logos/ryp_logo.png differ