add BlogCTASection and BlogSubForm components with translations for blog subscription
This commit is contained in:
@@ -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)} />;
|
||||
}
|
||||
Reference in New Issue
Block a user