From 5f608c23f98e9caf5934e7603a3976a19d8c9656 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Mon, 26 Jun 2023 13:18:15 +1000 Subject: [PATCH] Remove Newsletter functionality --- src/pages/index.jsx | 30 ------------------------------ src/pages/thank-you.jsx | 21 --------------------- 2 files changed, 51 deletions(-) delete mode 100644 src/pages/thank-you.jsx diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 34d750f..f08ad51 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -52,35 +52,6 @@ function SocialLink({ icon: Icon, ...props }) { ) } -function Newsletter() { - return ( -
-

- - Stay up to date -

-

- Get notified when I publish something new, and unsubscribe at any time. -

-
- - -
-
- ) -} - function Resume() { let resume = [ { @@ -252,7 +223,6 @@ export default function Home({ articles }) { ))}
-
diff --git a/src/pages/thank-you.jsx b/src/pages/thank-you.jsx deleted file mode 100644 index 45dca6d..0000000 --- a/src/pages/thank-you.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import Head from 'next/head' - -import { SimpleLayout } from '@/components/SimpleLayout' - -export default function ThankYou() { - return ( - <> - - You’re subscribed - Spencer Sharp - - - - - ) -}