The design should now be more or less the same as on the other pages. There's still some work to make it more beautiful and more readable (see #90)
29 lines
888 B
JavaScript
29 lines
888 B
JavaScript
import React from "react";
|
|
import "../../App.css";
|
|
import Footer from "../../Footer";
|
|
|
|
export default function Lizenzen() {
|
|
return (
|
|
<>
|
|
<div className="sitePage">
|
|
<h1>Lizenzen und Bildnachweise</h1>
|
|
<p>
|
|
Nachfolgend sollen die verwendeten Bibliotheken inklusive der Lizenz
|
|
aufgeführt werden. Neben den Bibliotheken sollen vorallem auch
|
|
Bildnachweise notiert werden.
|
|
</p>
|
|
<h2>Verwendete Bibliotheken</h2>
|
|
<h2>Bildnachweise</h2>
|
|
<ul className="bildnachweise">
|
|
<li>
|
|
Originalbild für die Startseite:
|
|
<a href="https://pixabay.com/illustrations/virtual-identity-digital-identity-69996/">
|
|
https://pixabay.com/illustrations/virtual-identity-digital-identity-69996/
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|