Updated the Home.jsx

This commit is contained in:
Mathias Wagner 2023-06-09 00:05:56 +02:00
parent 194d034e0d
commit e57b2bb663

View File

@ -1,10 +1,16 @@
import PageTitle from "@/common/components/PageTitle";
import "./styles.sass";
import ActionCard from "@/pages/Home/components/ActionCard";
import {faArrowRightToBracket, faPlusSquare} from "@fortawesome/free-solid-svg-icons";
export const Home = () => {
return (
<div className="home-page">
<PageTitle />
<div className="action-area">
<ActionCard title="Raum beitreten" icon={faArrowRightToBracket} onClick={() => {}} />
<ActionCard title="Raum erstellen" icon={faPlusSquare} onClick={() => {}} />
</div>
</div>
)
}