diff --git a/src/components/templates/Goodbye.tsx b/src/components/templates/Goodbye.tsx
index 778939d..099db4e 100644
--- a/src/components/templates/Goodbye.tsx
+++ b/src/components/templates/Goodbye.tsx
@@ -18,6 +18,10 @@ interface GoodbyeTemplateProps {
name: string;
}
+const baseUrl = process.env.VERCEL_URL
+ ? `https://${process.env.VERCEL_URL}`
+ : "http://localhost:3000";
+
export const Goodbye: React.FC> = ({ name }) => (
@@ -27,7 +31,7 @@ export const Goodbye: React.FC> = ({ name }) => (
> = ({ name }) => (
@@ -26,7 +30,7 @@ export const Welcome: React.FC> = ({ name }) => (