feat: add footer with CCP copyright and Cloudflare reference (#73)

This commit is contained in:
Patric Stout
2024-06-07 23:06:24 +02:00
committed by GitHub
parent 4c3688171d
commit 05f6149bd1
2 changed files with 16 additions and 0 deletions

View File

@@ -69,3 +69,13 @@
.statistics > div:first-child {
margin-bottom: 10px;
}
.footer {
color: #7a7a7a;
font-size: 12px;
margin-top: 12px;
text-align: center;
}
.footer a {
color: #7a7a7a;
}

View File

@@ -67,6 +67,12 @@ const Page = () => {
<ShipStatistics />
</div>
</div>
<div className={styles.footer}>
© 2014 CCP hf. All rights reserved. &quot;EVE&quot;, &quot;EVE Online&quot;, &quot;CCP&quot;, and all related
logos and images are trademarks or registered trademarks of CCP hf.
<br />
Kindly hosted by <a href="https://cloudflare.com">Cloudflare</a>.
</div>
{debug && <Debug />}
</>
);