gatsby-pingbot/src/pages/index.js

35 lines
704 B
JavaScript
Raw Normal View History

2021-08-19 21:13:03 +00:00
import React from 'react'
import AniLink from 'gatsby-plugin-transition-link/AniLink'
2021-08-04 09:48:04 +00:00
2021-08-19 21:13:03 +00:00
import Seo from '../components/seo'
2021-08-04 09:48:04 +00:00
2021-08-04 19:17:51 +00:00
const LoginPage = () => {
return (
<>
<Seo
2021-08-15 20:52:29 +00:00
title="Home"
2021-08-04 19:17:51 +00:00
/>
2021-08-04 09:48:04 +00:00
2021-08-04 19:17:51 +00:00
<div className="url-link">
2021-08-06 18:17:07 +00:00
<AniLink cover to="/add">
2021-08-04 19:17:51 +00:00
<button className="yellow-button">Add URL</button>
2021-08-06 18:17:07 +00:00
</AniLink>
2021-08-04 19:17:51 +00:00
</div>
2021-08-04 09:48:04 +00:00
2021-08-04 19:17:51 +00:00
<div className="url-link">
2021-08-06 18:17:07 +00:00
<AniLink cover to="/delete">
2021-08-04 19:17:51 +00:00
<button className="red-button">Delete URL</button>
2021-08-06 18:17:07 +00:00
</AniLink>
2021-08-04 19:17:51 +00:00
</div>
<br />
<AniLink cover to="/status">
<button className="blue-button">System Status</button>
</AniLink>
2021-08-04 19:17:51 +00:00
</>
2021-08-04 09:48:04 +00:00
)
}
2021-08-04 19:17:51 +00:00
export default LoginPage