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;