Merge pull request 'frontend/RemoveUnneccessaryButtons (fix #122 and fix #123)' (#125) from frontend/RemoveUnneccessaryButtons into main
Reviewed-on: #125
This commit is contained in:
commit
0a5f3eb4d2
2 changed files with 33 additions and 16 deletions
|
@ -30,6 +30,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
min-width: 60%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-btns .btn {
|
.hero-btns .btn {
|
||||||
|
|
|
@ -3,12 +3,26 @@ import "../App.css";
|
||||||
import { Button } from "./Button";
|
import { Button } from "./Button";
|
||||||
import "./HeroSection.css";
|
import "./HeroSection.css";
|
||||||
import "@fortawesome/fontawesome-free/css/all.css";
|
import "@fortawesome/fontawesome-free/css/all.css";
|
||||||
|
import { useAuth } from "../auth/AuthProvider";
|
||||||
|
|
||||||
function HeroSection() {
|
function HeroSection() {
|
||||||
|
const [isLoggedIn] = useAuth();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="hero-container">
|
<div className="hero-container">
|
||||||
<h1>Herzlich Willkommen</h1>
|
<h1>Herzlich Willkommen</h1>
|
||||||
<div className="hero-btns">
|
<div className="hero-btns">
|
||||||
|
{isLoggedIn ? (
|
||||||
|
<Button
|
||||||
|
className="btns"
|
||||||
|
buttonStyle="btn--primary"
|
||||||
|
buttonSize="btn--large"
|
||||||
|
newTo="behavior"
|
||||||
|
>
|
||||||
|
Zur Studie
|
||||||
|
</Button>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
<Button
|
<Button
|
||||||
className="btns"
|
className="btns"
|
||||||
buttonStyle="btn--primary"
|
buttonStyle="btn--primary"
|
||||||
|
@ -25,6 +39,8 @@ function HeroSection() {
|
||||||
>
|
>
|
||||||
Registrieren (falls du das erste Mal hier bist)
|
Registrieren (falls du das erste Mal hier bist)
|
||||||
</Button>
|
</Button>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
<Button
|
<Button
|
||||||
className="btns"
|
className="btns"
|
||||||
buttonStyle="btn--primary"
|
buttonStyle="btn--primary"
|
||||||
|
|
Loading…
Reference in a new issue