diff --git a/src/components/Newsletter.astro b/src/components/Newsletter.astro
new file mode 100644
index 0000000..e281341
--- /dev/null
+++ b/src/components/Newsletter.astro
@@ -0,0 +1,29 @@
+---
+interface Props {
+ intro?: string;
+ href: string;
+}
+
+const { intro, href } = Astro.props;
+---
+
+
+
+
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 875c524..6532c27 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -10,6 +10,7 @@ import Timeline from '~/components/timeline/home/TimelineHome.svelte';
import Supports from '~/components/homepage/Supports.astro';
import Button from '~/components/Button.astro';
import SoftwareAnnouncement from '~/components/SoftwareAnnouncement.astro';
+import Newsletter from '~/components/Newsletter.astro';
import Banner from '~/assets/dynebolic-banner.svg?raw';
import Svg from '~/components/Svg.astro';
@@ -27,6 +28,11 @@ We focus on developing software that benefits society, rather than generate prof
+
+