gatsby-pingbot/src/pages/index.js

29 lines
579 B
JavaScript
Raw Normal View History

2021-08-04 19:17:51 +00:00
import React from "react"
2021-08-06 18:17:07 +00:00
import AniLink from "gatsby-plugin-transition-link/AniLink"
2021-08-04 09:48:04 +00:00
2021-08-04 19:17:51 +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
title="Home Page"
/>
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>
</>
2021-08-04 09:48:04 +00:00
)
}
2021-08-04 19:17:51 +00:00
export default LoginPage