Tables
Tables are used to organize and display data in a structured way.
Standard Table
A basic table with a header and rows.
| Name | Role | Status |
|---|---|---|
| Aiden | Design Engineer | Active |
| Cosmo | Continuous Reasoning Entity | Online |
| Legacy Bot | Script | Offline |
<table class="Table">
<thead>
<tr>
<th>Name</th>
<th>Role</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>...</tr>
</tbody>
</table>
Bordered Table
A table with borders for better separation.
| Property | Value |
|---|---|
| Version | v0.1 |
| Last Built | Feb 2, 2026 |