fix blue button class name and [TODO] add status page

This commit is contained in:
Medzik 2021-08-15 20:45:38 +00:00
parent f65fca1db2
commit 278a2c700c
6 changed files with 32 additions and 4 deletions

View File

@ -40,6 +40,6 @@ button
border: 2px solid greenyellow
color: greenyellow
.blue-buton
.blue-button
border: 2px solid blue
color: blue

View File

@ -15,7 +15,7 @@ const NotFoundPage = () => {
Sorry we couldnt find what you were looking for.
<br />
<AniLink cover to="/">
<button className="blue-buton">Go to home page</button>
<button className="blue-button">Go to home page</button>
</AniLink>
</p>
</>

View File

@ -85,7 +85,7 @@ const AddURLPage = () => {
<br />
<AniLink cover to="/">
<button className="blue-buton">Go to home page</button>
<button className="blue-button">Go to home page</button>
</AniLink>
</>
)

View File

@ -82,7 +82,7 @@ const DeleteURLPage = () => {
<br />
<AniLink cover to="/">
<button className="blue-buton">Go to home page</button>
<button className="blue-button">Go to home page</button>
</AniLink>
</>
)

View File

@ -21,6 +21,12 @@ const LoginPage = () => {
<button className="red-button">Delete URL</button>
</AniLink>
</div>
<br />
<AniLink cover to="/status">
<button className="blue-button">System Status</button>
</AniLink>
</>
)
}

22
src/pages/status.js Normal file
View File

@ -0,0 +1,22 @@
import React from "react"
import AniLink from "gatsby-plugin-transition-link/AniLink"
import Seo from "../components/seo"
const LoginPage = () => {
return (
<>
<Seo
title="Home Page"
/>
<p>TODO</p>
<AniLink cover to="/">
<button className="blue-button">Go to home page</button>
</AniLink>
</>
)
}
export default LoginPage