Refactored some things in the frontend
This commit is contained in:
parent
c72e2bd2e9
commit
49106ea1b6
15 changed files with 1901 additions and 49 deletions
|
@ -8,7 +8,6 @@ function Home() {
|
|||
return (
|
||||
<>
|
||||
<HeroSection />
|
||||
<Cards />
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
|
|
|
@ -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 />
|
||||
</>
|
||||
);
|
||||
}
|
24
frontend/src/components/pages/lizenzen.js
Normal file
24
frontend/src/components/pages/lizenzen.js
Normal 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 />
|
||||
</>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue