Refactored some things in the frontend

This commit is contained in:
cami 2021-06-07 04:14:00 +02:00
parent c72e2bd2e9
commit 49106ea1b6
15 changed files with 1901 additions and 49 deletions

View file

@ -8,7 +8,6 @@ function Home() {
return (
<>
<HeroSection />
<Cards />
<Footer />
</>
);

View file

@ -1,12 +0,0 @@
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function Products() {
return (
<>
<h1 className="products">PRODUCTS</h1>
<Footer />
</>
);
}

View file

@ -0,0 +1,24 @@
import React from "react";
import "../../App.css";
import Footer from "../../Footer";
export default function Lizenzen() {
return (
<>
<h1 className="pages_title">Lizenzen und Bildnachweise</h1>
<h2 className="pages_subtitle">Öffentliche Libraries</h2>
<h2>Bildnachweise</h2>
<div>
<ul>
<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 />
</>
);
}