EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
DocsIndex.jsx
Go to the documentation of this file.
1import { Link } from 'react-router-dom';
2import DocsLayout from './DocsLayout';
3import { guides } from './guides/index';
4
5export default function DocsIndex() {
6 return (
7 <DocsLayout>
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>
11 </section>
12
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>
19 </div>
20 <div className="doc-card-body">
21 <h3>{item.title}</h3>
22 <p>{item.summary}</p>
23 </div>
24 </Link>
25 ))}
26 </div>
27 </section>
28 </DocsLayout>
29 );
30}