Skip to content

Commit

Permalink
Add newsletter success page
Browse files Browse the repository at this point in the history
  • Loading branch information
prestonso committed Mar 26, 2020
1 parent a9a0028 commit 54417dd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/pages/newsletter-success.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React from "react"
import { Link } from "gatsby"

import Layout from "../components/layout"
import SEO from "../components/seo"

import Card from "../components/card"

const NewsletterSuccessPage = () => (
<Layout>
<SEO title="You're subscribed!" />
<Card
type="intro"
orientation="no"
title="You're subscribed!"
body={<p>Thanks for subscribing to my newsletter. <Link to="/">Go back home</Link></p>}
/>
</Layout>
)

export default NewsletterSuccessPage

0 comments on commit 54417dd

Please sign in to comment.