Skip to content

Commit

Permalink
update footer to add tos and privacy policy
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Nov 12, 2024
1 parent 04a3d83 commit c600ff6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion web/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,24 @@ export default function Footer(): React.ReactElement {
<footer className="footer is-flex-align-items-flex-end mt-auto">
<div className="content has-text-centered">
<p>
Powered by <a href="https://www.astria.org/">Astria</a>
&copy; 2024. All Rights Reserved.{" "}
<a href="https://www.astria.org/">Astria.org</a>
</p>
<p>
<a
target="_blank"
href="https://www.astria.org/terms"
rel="noreferrer"
>
Terms of Service.
</a>{" "}
<a
target="_blank"
href="https://www.astria.org/privacy"
rel="noreferrer"
>
Privacy Policy.
</a>
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion web/src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body {

.is-fullheight-with-navbar-and-footer {
// viewport height minus navbar and footer height
min-height: calc(100vh - 85px - 56px);
min-height: calc(100vh - 85px - 96px);
}

// custom styles for the side tag component
Expand Down

0 comments on commit c600ff6

Please sign in to comment.