Bachelorthesis_Code/frontend/src/components/HeroSection.js
cami 29142a9977 Refactoring because of local scripts and tabs
In this commit I want to refactor some things.
- I don't want to use external connections so I moved all that shit to localhost
- I do not need so many spaces as it is bad for formatting
2021-05-27 03:07:54 +02:00

32 lines
733 B
JavaScript

import React from "react";
import "../App.css";
import { Button } from "./Button";
import "./HeroSection.css";
import "@fortawesome/fontawesome-free/css/all.css";
function HeroSection() {
return (
<div className="hero-container">
<h1>Herzlich Willkommen</h1>
<div className="hero-btns">
<Button
className="btns"
buttonStyle="btn--outline"
buttonSize="btn--large"
>
GET STARTED
</Button>
<Button
className="btns"
buttonStyle="btn--primary"
buttonSize="btn--large"
>
WATCH TRAILER <i className="far fa-play-circle" />
</Button>
</div>
</div>
);
}
export default HeroSection;