Clarify footer copyright (#75)

One person we spoke to today was a little confused by the footer. To prevent confusion, I have made this PR to make it clear that Open Sats is being credited for their technology and does not operate the website.
This commit is contained in:
Justin Ehrenhofer
2024-06-04 06:58:31 -07:00
committed by GitHub
parent 3531aa60c0
commit 12916d722f

View File

@@ -32,7 +32,7 @@ const Layout: React.FC<React.PropsWithChildren> = ({ children }) => {
<Navbar />
<main className="flex-1 flex flex-col">{ children }</main>
<footer className="flex justify-between p-4 md:p-8 bg-light">
<strong>© Open Sats Initiative and MAGIC Grants, 2024</strong>
<strong>© MAGIC Grants. This website builds upon technology by Open Sats.</strong>
</footer>
</div>
)