diff --git a/app/layout.tsx b/app/layout.tsx index 29aeddc..c4a089b 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -10,8 +10,8 @@ export const viewport: Viewport = { colorScheme: "dark", }; export const metadata: Metadata = { - title: "Guest List - Bangers and Mash", - description: "Sign up to the Bangers and Mash guest list here to join our parties.", + title: "Members List - Bangers and Mash", + description: "Sign up to the Bangers and Mash members list here to join our parties.", }; export default function RootLayout({ diff --git a/app/page.tsx b/app/page.tsx index 930d09d..cae6cb6 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -11,7 +11,7 @@ export default function Page() { height={200} className="mx-auto my-8" /> -

Sign up to our guest list here

+

Sign up to our members list here

); diff --git a/lib/listmonk.ts b/lib/listmonk.ts index cf736af..831cfb1 100644 --- a/lib/listmonk.ts +++ b/lib/listmonk.ts @@ -26,11 +26,11 @@ async function listmonk(data: listmonkData): Promise { try { const response = await fetch(`${listmonkUrl}subscribers`, options); if (!response.ok) { - return "Error. Please try again"; + return "An error occurred or this email is already subscribed."; } return "Thanks for signing up! Please check your email for a confirmation."; } catch (error) { - return "Error. Please contact us."; + return "An error occurred while trying to sign up. Please try again."; } }