gatsby-pingbot/src/pages/index.js

34 lines
644 B
JavaScript
Raw Normal View History

2021-08-04 19:17:51 +00:00
import React from "react"
import { Link } from "gatsby"
2021-08-06 17:58:01 +00:00
import { NotificationContainer } from "react-notifications"
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
import "../css/base.css"
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
<NotificationContainer />
2021-08-04 09:48:04 +00:00
2021-08-04 19:17:51 +00:00
<div className="url-link">
<Link to="/add">
<button className="yellow-button">Add URL</button>
</Link>
</div>
2021-08-04 09:48:04 +00:00
2021-08-04 19:17:51 +00:00
<div className="url-link">
<Link to="/delete">
<button className="red-button">Delete URL</button>
</Link>
</div>
</>
2021-08-04 09:48:04 +00:00
)
}
2021-08-04 19:17:51 +00:00
export default LoginPage