diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml
index 42766ab..3f1e6d7 100644
--- a/.gitea/workflows/deploy.yml
+++ b/.gitea/workflows/deploy.yml
@@ -24,10 +24,6 @@ jobs:
- name: Build
env:
SITE_URL: ${{ secrets.SITE_URL }}
- PUBLIC_NEWSLETTER_ACTION: ${{ secrets.PUBLIC_NEWSLETTER_ACTION }}
- PUBLIC_NEWSLETTER_EMAIL_FIELD: ${{ secrets.PUBLIC_NEWSLETTER_EMAIL_FIELD }}
- PUBLIC_NEWSLETTER_TITLE: ${{ secrets.PUBLIC_NEWSLETTER_TITLE }}
- PUBLIC_NEWSLETTER_DESCRIPTION: ${{ secrets.PUBLIC_NEWSLETTER_DESCRIPTION }}
run: npm run build
- name: Write deploy key
diff --git a/src/components/Header.astro b/src/components/Header.astro
index df55262..cfd92ba 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -10,7 +10,6 @@ import HeaderLink from './HeaderLink.astro';
Home
Blog
Search
- Subscribe
About
diff --git a/src/components/SubscribeForm.astro b/src/components/SubscribeForm.astro
deleted file mode 100644
index ee0911a..0000000
--- a/src/components/SubscribeForm.astro
+++ /dev/null
@@ -1,74 +0,0 @@
----
-const action = import.meta.env.PUBLIC_NEWSLETTER_ACTION as string | undefined;
-const emailField = (import.meta.env.PUBLIC_NEWSLETTER_EMAIL_FIELD as string | undefined) ?? 'email';
-const title = (import.meta.env.PUBLIC_NEWSLETTER_TITLE as string | undefined) ?? 'Subscribe';
-const description = (import.meta.env.PUBLIC_NEWSLETTER_DESCRIPTION as string | undefined) ?? 'Get new posts in your inbox.';
-
-const ready = Boolean(action);
----
-
-
- {title}
- {description}
-
- {!ready ? (
-
- Newsletter is not configured yet. Set PUBLIC_NEWSLETTER_ACTION.
-
- ) : (
-
- )}
-
-
-
diff --git a/src/pages/subscribe.astro b/src/pages/subscribe.astro
deleted file mode 100644
index d46d7ac..0000000
--- a/src/pages/subscribe.astro
+++ /dev/null
@@ -1,8 +0,0 @@
----
-import SiteLayout from '../layouts/SiteLayout.astro';
-import SubscribeForm from '../components/SubscribeForm.astro';
----
-
-
-
-