Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. import React from "react"
  2. import { Link } from "gatsby"
  3.  
  4. import ContainerUnauthenticated from "../components/containerUnauthenticated"
  5.  
  6. const IndexPage = () => {
  7. return (
  8. <div>
  9. <ContainerUnauthenticated>
  10. <p>
  11. Here is some introducing text, just divs and ps, nothing special
  12. </p>
  13. <div style={{ textAlign: 'center' }}>
  14. <Link to="/account/cv" className="waves-effect waves-default" style={{ color: '#039be5' }} >
  15. <i class="fas fa-sign-in-alt" />
  16. &nbsp;Please login here
  17. </Link>
  18. </div>
  19. </ContainerUnauthenticated>
  20. </div >
  21. )
  22. }
  23.  
  24. export default IndexPage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement