Renaming and autoformatting
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

- renamed the react files to jsx
- autoformat with vscode
This commit is contained in:
cami 2021-07-22 20:18:01 +02:00
parent e762032f00
commit 85e484bf0b
32 changed files with 127 additions and 129 deletions

View file

@ -0,0 +1,55 @@
import React from "react";
import "../App.css";
import { Button } from "./Button";
import "./HeroSection.css";
import "@fortawesome/fontawesome-free/css/all.css";
import { useAuth } from "../auth/AuthProvider";
export default function HeroSection() {
const [isLoggedIn] = useAuth();
return (
<div className="hero-container">
<h1>Herzlich Willkommen</h1>
<div className="hero-btns">
{isLoggedIn ? (
<Button
className="btns"
buttonStyle="btn--primary"
buttonSize="btn--large"
newTo="study"
>
Zur Studie
</Button>
) : (
<>
<Button
className="btns"
buttonStyle="btn--primary"
buttonSize="btn--large"
newTo="login"
>
Einloggen (wenn du schon einmal mitgemacht hast)
</Button>
<Button
className="btns"
buttonStyle="btn--primary"
buttonSize="btn--large"
newTo="register"
>
Registrieren (falls du das erste Mal hier bist)
</Button>
</>
)}
<Button
className="btns"
buttonStyle="btn--primary"
buttonSize="btn--large"
newTo="manual"
>
Anleitung
</Button>
</div>
</div>
);
}