Merge branch 'loginFunciton' into refactoring/css

This commit is contained in:
cami 2021-06-23 00:23:39 +02:00
commit ec95a09adc
6 changed files with 8 additions and 6 deletions

View file

@ -12,8 +12,7 @@
}
.home,
.about,
.sign-up {
.about {
display: flex;
height: 90vh;
align-items: center;
@ -35,6 +34,7 @@
align-content: center;
align-items: center;
background-color: var(--secondary);
color: var(--primary);
}
.sitePage h1 {
font-size: 80px;

View file

@ -10,7 +10,7 @@ function Footer() {
<div className="footer-link-wrapper">
<div className="footer-link-items">
<h2>Informationen</h2>
<Link to="/">Hintergrund</Link>
<Link to="/ueber">Hintergrund</Link>
<Link to="/manual">Wie funktioniert das?</Link>
</div>
<div className="footer-link-items">

View file

@ -48,7 +48,7 @@ function Navbar() {
</li>
<li className="nav-item">
<Link
to="/services"
to="/Ueber"
className="nav-links"
onClick={closeMobileMenu}
>
@ -57,7 +57,7 @@ function Navbar() {
</li>
<li>
<Link
to="/sign-up"
to="/manual"
className="nav-links"
onClick={closeMobileMenu}
>

View file

@ -5,7 +5,9 @@ import Footer from "../../Footer";
export default function Ueber() {
return (
<>
<h2 className="about">Über das Projekt</h2>
<div className="sitePage">
<h1>Über das Projekt</h1>
</div>
<Footer />
</>
);