Skip to content

Commit

Permalink
feat(about-view): add credits
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-borriello00 committed Oct 12, 2023
1 parent 2285c79 commit 986b33b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/main/scala/scatan/views/home/AboutView.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,27 @@ private class ScalaJSAboutView(container: String, requirements: View.Requirement
li("Laminar"),
li("ScalaTest")
),
h2("Authors"),
ul(
// add links to github profiles
li(
a(
cls := "about-link",
"Luigi Borriello",
href := "https://github.com/luigi-borriello00"
)
),
li(
a(
cls := "about-link",
"Manuel Andruccioli",
href := "https://github.com/manuandru"
)
),
li(
a(cls := "about-link", "Alessandro Mazzoli", href := "https://github.com/alemazzo")
)
),
button(
cls := "home-menu-button",
"Back",
Expand Down
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,4 +343,9 @@ body {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 1em;
padding: 1em;
}

.about-link{
color: white;
text-decoration: none;
}

0 comments on commit 986b33b

Please sign in to comment.