[ * 'name' => 'Display Name', * 'description' => 'Template description', * 'blocks' => [ * ['type' => 'block-type', 'data' => [...], 'settings' => [...]], * ... * ] * ] */ return [ 'landing-page' => [ 'name' => 'Landing Page', 'description' => 'Standard landing page with hero, content sections, and CTA', 'blocks' => [ [ 'type' => 'hero', 'data' => [ 'title' => 'Welcome to Our Website', 'subtitle' => 'Discover amazing content', 'ctaText' => 'Get Started', 'ctaLink' => '#', 'backgroundImage' => null, ], ], [ 'type' => 'text', 'data' => [ 'content' => '
This is a standard landing page template. Customize the content to match your needs.
', 'alignment' => 'center', 'maxWidth' => '800px', ], ], [ 'type' => 'cta', 'data' => [ 'title' => 'Ready to Get Started?', 'description' => 'Join us today and experience the difference', 'buttonText' => 'Sign Up Now', 'buttonLink' => '#', ], ], ], ], 'article' => [ 'name' => 'Article', 'description' => 'Standard article layout with title, content, and image', 'blocks' => [ [ 'type' => 'text', 'data' => [ 'content' => 'Article content goes here...
', 'alignment' => 'left', 'maxWidth' => '800px', ], ], ], ], 'hero-only' => [ 'name' => 'Hero Only', 'description' => 'Simple hero section', 'blocks' => [ [ 'type' => 'hero', 'data' => [ 'title' => 'Hero Title', 'subtitle' => 'Hero subtitle', 'ctaText' => 'Learn More', 'ctaLink' => '#', 'backgroundImage' => null, ], ], ], ], 'text-content' => [ 'name' => 'Text Content', 'description' => 'Simple text content block', 'blocks' => [ [ 'type' => 'text', 'data' => [ 'content' => 'Your content here...
', 'alignment' => 'left', 'maxWidth' => '800px', ], ], ], ], 'image-gallery' => [ 'name' => 'Image Gallery', 'description' => 'Gallery of images', 'blocks' => [ [ 'type' => 'text', 'data' => [ 'content' => 'Left column content
', ], [ 'content' => 'Right column content
', ], ], 'layout' => '2-columns', ], ], ], ], ];