Skip to content

Commit

Permalink
Merge pull request #336 from kleros/feat/alert-message
Browse files Browse the repository at this point in the history
feat: alert message
  • Loading branch information
jaybuidl authored May 10, 2024
2 parents bc24d96 + dc03bbc commit 5c8f0e3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/bootstrap/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ const FooterWrapper = styled.div`
margin-top: auto !important;
`

export const AlertMessage = styled.div`
display: flex;
width: 100vw;
background-color: #a83232;
color: #ffffff;
justify-content: center;
text-align: center;
padding: 6px 0;
`

const App = () => {
const [isMenuClosed, setIsMenuClosed] = useState(true)

Expand Down Expand Up @@ -69,6 +79,14 @@ const App = () => {
</Helmet>
<StyledLayout>
<Layout>
{/* temporary alert message until subgraph issues are fixed */}
<AlertMessage>
We are currently facing technical issues with our subgraph
that are affecting the search functionality, making it
difficult to locate certain entries. To ensure you don't
submit duplicates, please manually check if an entry has
already been submitted.
</AlertMessage>
<AppBar />
<AppRouter />
<StyledClickaway
Expand Down

0 comments on commit 5c8f0e3

Please sign in to comment.