Skip to content

Commit

Permalink
landing: WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
goshatch committed Sep 29, 2024
1 parent 4c2facb commit 4bd6461
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
29 changes: 29 additions & 0 deletions resources/public/css/style.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,42 @@
:root {
--color-bg: #ffffff;
--color-text: #444444;
--color-text-subdued: #666666;
--color-primary: #62A294;
--color-secondary: #F2BE56;
--color-tertiary: #D1B43C;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.8em;
background-color: var(--color-bg);
color: var(--color-text);
}

a {
color: var(--color-primary);
&:visited {
color: var(--color-tertiary);
}
}

footer {
color: var(--color-text-subdued);
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
gap: 1rem;
}

#home {
h1 {
font-family: Georgia, Times, 'Times New Roman', serif;
color: var(--color-primary);
font-weight: normal;
font-size: 3rem;
line-height: 1.2em;
}
}
2 changes: 1 addition & 1 deletion src/tools/ifs/parts.clj
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
:middleware [middleware/jwt-auth]}]
["/register"
{:post {:handler account/register-account}}]]]
["/" {:get pages/home-page}]]
["/" {:get {:handler #(pages/home-page %)}}]]
{:data {:middleware [wrap-params
middleware/exception
middleware/logging
Expand Down
4 changes: 2 additions & 2 deletions src/tools/ifs/parts/pages.clj
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
(html
(layout "Home Page"
(header)
[:div
[:div#home
[:h1
{:align "center"}
"Have better conversations with your clients"]
"Understand your client's parts and their relationships"]
[:h3.hook
{:align "center"}
[:strong "Parts"]
Expand Down

0 comments on commit 4bd6461

Please sign in to comment.