2021-04-21 16:21:30 +00:00
|
|
|
import React from "react"
|
|
|
|
import Style from "./PageHome.module.css"
|
|
|
|
import classNames from "classnames"
|
2021-04-21 16:46:35 +00:00
|
|
|
import BoxHeaderOnly from "../components/BoxHeaderOnly"
|
|
|
|
import BoxWithHeader from "../components/BoxWithHeader"
|
2021-04-21 16:21:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
export default function PageHome({ children, className, ...props }) {
|
|
|
|
return (
|
|
|
|
<div className={classNames(Style.PageHome, className)} {...props}>
|
2021-04-21 16:46:35 +00:00
|
|
|
<BoxHeaderOnly className={Style.Header}>
|
|
|
|
Create a new repository
|
|
|
|
</BoxHeaderOnly>
|
|
|
|
<BoxWithHeader className={Style.SearchByZone} header={"Search by zone"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
|
|
|
<BoxWithHeader className={Style.SearchByHashtags} header={"Search by hashtags"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
|
|
|
<BoxWithHeader className={Style.SearchByTimePeriod} header={"Search by time period"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
|
|
|
<BoxWithHeader className={Style.CreateDialog} header={"Create repository"}>
|
|
|
|
|
|
|
|
</BoxWithHeader>
|
2021-04-21 16:21:30 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|