class HelpController < ApplicationController # Make page_templates public for sharing with non-users before_action :authenticate_user!, except: [:page_templates] before_action :set_sidenav_expansion layout 'tailwind' def index @page_title = "Help center" end def page_templates @page_title = "Page Templates" @meta_description = "Learn how to customize page templates in Notebook.ai to structure your creative content perfectly. Complete guide to categories, fields, and template management." end def set_sidenav_expansion @sidenav_expansion = 'my account' end end