Knowledge Base
Internal documentation, SOPs, and troubleshooting guides
{/* Search */}
{/* Category Filter */}
{categories.map((category) => (
))}
{/* Articles Grid */}
{articles.map((article) => (
trackView(article.id)}
>
{getCategoryIcon(article.category)}
{article.category}
{article.title}
{article.content.substring(0, 150)}...
{article.tags && article.tags.length > 0 && (
{article.tags.map((tag) => (
{tag}
))}
)}
{article.views}
{article.helpful_count}
{formatDate(article.updated_at)}
))}
{articles.length === 0 && (
)}