Updated the Home.jsx
This commit is contained in:
parent
194d034e0d
commit
e57b2bb663
@ -1,10 +1,16 @@
|
|||||||
import PageTitle from "@/common/components/PageTitle";
|
import PageTitle from "@/common/components/PageTitle";
|
||||||
import "./styles.sass";
|
import "./styles.sass";
|
||||||
|
import ActionCard from "@/pages/Home/components/ActionCard";
|
||||||
|
import {faArrowRightToBracket, faPlusSquare} from "@fortawesome/free-solid-svg-icons";
|
||||||
|
|
||||||
export const Home = () => {
|
export const Home = () => {
|
||||||
return (
|
return (
|
||||||
<div className="home-page">
|
<div className="home-page">
|
||||||
<PageTitle />
|
<PageTitle />
|
||||||
|
<div className="action-area">
|
||||||
|
<ActionCard title="Raum beitreten" icon={faArrowRightToBracket} onClick={() => {}} />
|
||||||
|
<ActionCard title="Raum erstellen" icon={faPlusSquare} onClick={() => {}} />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user