gatsby-pingbot/src/pages/index.js

27 lines
545 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-09-17 19:38:34 +00:00
const HomePage = () => {
2021-08-04 19:17:51 +00:00
return (
<>
2021-09-19 13:59:45 +00:00
<Seo />
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-09-17 19:38:34 +00:00
export default HomePage