From 768d76960cd6ffa26aedc4193868908fdf86b67e Mon Sep 17 00:00:00 2001 From: Niall Maher Date: Mon, 26 Feb 2024 23:14:11 +0000 Subject: [PATCH] Add newsletter unsubscribed page (#776) * Add newsletter unsubscribed page * Update metadata --- .../newsletter/unsubscribed/page.tsx | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 app/(standalone)/newsletter/unsubscribed/page.tsx diff --git a/app/(standalone)/newsletter/unsubscribed/page.tsx b/app/(standalone)/newsletter/unsubscribed/page.tsx new file mode 100644 index 00000000..ef20b571 --- /dev/null +++ b/app/(standalone)/newsletter/unsubscribed/page.tsx @@ -0,0 +1,45 @@ +import type { Metadata } from "next"; +import Link from "next/link"; + +export const metadata: Metadata = { + title: "You are now unsubscribed. We are sad to see you go.", + robots: { + follow: false, + index: false, + }, +}; + +export default function NewsletterUnsubscribedPage() { + return ( +
+
+
+
+

+ You are now unsubscribed. +

+

+ We are sad to see you go. If you change your mind, you can always{" "} + + resubscribe + + . +

+
+
+
+ + ); +}