gatsby-pingbot/src/pages/index.js

34 lines
644 B
JavaScript

import React from "react"
import { Link } from "gatsby"
import { NotificationContainer } from "react-notifications"
import Seo from "../components/seo"
import "../css/base.css"
const LoginPage = () => {
return (
<>
<Seo
title="Home Page"
/>
<NotificationContainer />
<div className="url-link">
<Link to="/add">
<button className="yellow-button">Add URL</button>
</Link>
</div>
<div className="url-link">
<Link to="/delete">
<button className="red-button">Delete URL</button>
</Link>
</div>
</>
)
}
export default LoginPage