Skip to content

Commit

Permalink
Merge pull request #17 from reflexer-labs/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mstfash authored Feb 1, 2021
2 parents 7a499f8 + 006ae97 commit 607b950
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
17 changes: 14 additions & 3 deletions src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ const Footer = ({ slapToBottom, location }) => {
{showSuccess && <Success>Confirmation email sent!</Success>}
</Subscribe>
</Company>
<Column className="col20"></Column>
<Column className={`col20 ${selectedGroup === 1 ? "active" : ""}`}>
<Header onClick={() => handleClick(1)}>
Community{" "}
Expand All @@ -111,9 +110,22 @@ const Footer = ({ slapToBottom, location }) => {
</Column>
<Column className={`col20 ${selectedGroup === 2 ? "active" : ""}`}>
<Header onClick={() => handleClick(2)}>
Resources{" "}
Project{" "}
{selectedGroup === 2 ? <Minus size={16} /> : <Plus size={16} />}
</Header>
<LinksContainer>
<LinkBtn href={"https://github.com/reflexer-labs"}>GitHub</LinkBtn>
<LinkBtn onClick={e => handleSamePageClick(e, "/bug-bounty")}>
Bug Bounty
</LinkBtn>
</LinksContainer>
</Column>

<Column className={`col20 ${selectedGroup === 3 ? "active" : ""}`}>
<Header onClick={() => handleClick(3)}>
Resources{" "}
{selectedGroup === 3 ? <Minus size={16} /> : <Plus size={16} />}
</Header>
<LinksContainer>
<LinkBtn onClick={e => handleSamePageClick(e, "/about")}>
About
Expand All @@ -130,7 +142,6 @@ const Footer = ({ slapToBottom, location }) => {
>
TL;DR Reflex Index
</LinkBtn>
<LinkBtn href={"https://github.com/reflexer-labs"}>GitHub</LinkBtn>
</LinksContainer>
</Column>
</UpperSection>
Expand Down
8 changes: 6 additions & 2 deletions src/pages/404.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import getPrefixedPath from "../utils/getPrefixPath"

export default function NotFound() {
return (
<Layout>
<Layout headerStyle={{ position: "absolute", width: "100%", top: "20px" }}>
<>
<Container>
<h2>Page not found</h2>
Expand All @@ -32,9 +32,13 @@ const Container = styled.div`
padding: 80px 15px;
text-align: center;
max-width: 900px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
margin: 0 auto;
width: 100%;
min-height: 400px;
min-height: calc(100vh - 320px);
`

const BtnContainer = styled.div`
Expand Down
Binary file modified static/reflexer_brand_assets.zip
Binary file not shown.

0 comments on commit 607b950

Please sign in to comment.