'use client' import { useState } from 'react' import { Button } from '@/components/shared/Button' const categories = [ 'All Posts', 'Product Updates', 'Tutorials', 'Company News', 'Industry Insights', 'Case Studies', ] export function BlogLayout({ children }: { children: React.ReactNode }) { const [email, setEmail] = useState('') return (
Get the latest updates and insights delivered to your inbox