1import { Link } from 'react-router-dom';
2import DocsLayout from './DocsLayout';
3import { guides } from './guides/index';
5export default function DocsIndex() {
8 <section className="doc-section">
9 <h1><span className="material-symbols-outlined" style={{verticalAlign:'-6px',marginRight:8}}>menu_book</span>Documentation</h1>
10 <p className="lead">Welcome to the IBG MSP Platform documentation. Browse topics below or use the search.</p>
13 <section className="doc-section">
14 <div className="docs-grid">
15 {guides.map((item) => (
16 <Link key={item.slug} className="doc-card" to={`/docs/${item.slug}`}>
17 <div className="doc-card-icon">
18 <span className="material-symbols-outlined">{item.icon}</span>
20 <div className="doc-card-body">