Skip to content

Commit

Permalink
landing: added pictures and copy to who made this
Browse files Browse the repository at this point in the history
  • Loading branch information
goshatch committed Oct 16, 2024
1 parent b393893 commit b2f9b2e
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 8 deletions.
29 changes: 29 additions & 0 deletions resources/public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,41 @@ footer {
}
}

.person-cards {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
gap: 3rem;
.person-card {
padding-left: 10rem;
position: relative;
min-height: 8rem;
img {
position: absolute;
top: 0px;
left: 0px;
height: 8rem;
width: 8rem;
border-radius: 50%;
}
p {
margin: 0;
}
}
}

@media (max-width: 900px) {
.main {
flex-direction: column;
gap: 0;
}

.person-cards {
flex-direction: column;
gap: 1rem;
}

.illustration, .signup {
width: 100%;
}
Expand Down
Binary file added resources/public/images/avatars/gosha.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/public/images/avatars/tingyi.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 11 additions & 8 deletions src/tools/ifs/parts/pages.clj
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,15 @@
[:section.aboutus
[:h3
"Who made this?"]
[:div
[:img {:src "/images/avatars/tingyi.png"}]
[:h4 "Ting-yi Lai"]
[:p "An IFS Level 1 trained art psychotherapist focused on trauma"]]
[:div
[:img {:src "/images/avatars/gosha.png"}]
[:h4 "Gosha Tcherednitchenko"]
[:p "A software engineer with over 20 years of experience building software"]]]
[:div.person-cards
[:div.person-card
[:img {:src "/images/avatars/tingyi.jpg"}]
[:p
[:strong "Ting-yi Lai"]
" is an IFS Level 1 trained art psychotherapist focused on trauma"]]
[:div.person-card
[:img {:src "/images/avatars/gosha.jpg"}]
[:p
[:strong "Gosha Tcherednitchenko"]
" is a software engineer who's been building Web applications for close to 20 years"]]]]
(footer))))))

0 comments on commit b2f9b2e

Please sign in to comment.