From ee32160afdf0a2a6a7fede7acb89a0a1a040cc0b Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 04:55:07 +0000 Subject: [PATCH] Create BlogNewsletterSection component cgen-6c65eda5a7924f9eba1fc3c7a4496833 --- .../components/blog/BlogNewsletterSection.tsx | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 client/components/blog/BlogNewsletterSection.tsx diff --git a/client/components/blog/BlogNewsletterSection.tsx b/client/components/blog/BlogNewsletterSection.tsx new file mode 100644 index 00000000..4e9ac515 --- /dev/null +++ b/client/components/blog/BlogNewsletterSection.tsx @@ -0,0 +1,46 @@ +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Input } from "@/components/ui/input"; +import { BellRing, Send } from "lucide-react"; + +const BlogNewsletterSection = () => { + return ( +
+
+
+
+ + +
+ +
+
+

Stay in the AeThex signal

+

+ Subscribe for release notes, engineering write-ups, and community highlights. Expect one curated update every week—only the essentials. +

+
+
+ + +
+

+ By subscribing you agree to receive emails from AeThex. Unsubscribe anytime in a single click. +

+
+
+
+
+
+ ); +}; + +export default BlogNewsletterSection;