add BlogCTASection and BlogSubForm components with translations for blog subscription

This commit is contained in:
2026-06-02 19:32:50 +02:00
parent a8c8b61a3f
commit 77f3c4ddbd
6 changed files with 261 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
'use client';
import { useState } from 'react';
import { BlogSubFormModal } from '@/components/ui/BlogSubFormModal';
export function BlogSubFormController() {
const [subOpen, setSubOpen] = useState(false);
return <BlogSubFormModal isOpen={subOpen} onClose={() => setSubOpen(false)} />;
}