add parent pages

This commit is contained in:
root
2026-04-23 02:24:05 -04:00
parent 9191fd32f0
commit 94700d4f0f
30 changed files with 8179 additions and 634 deletions
+2 -9
View File
@@ -9,8 +9,6 @@ export function CiPlaceholderPage() {
const meta = getCiMeta(star)
const title = meta?.title ?? 'Section placeholder'
const viewsPath = meta?.ciViewPath ?? (star ? `…/${star}` : '…')
return (
<div>
<nav aria-label="breadcrumb">
@@ -31,12 +29,7 @@ export function CiPlaceholderPage() {
</nav>
<h2 className="h4 mb-3">{title}</h2>
<p className="text-muted mb-2">
CodeIgniter view:{' '}
<code>
app/Views/{viewsPath}
</code>
</p>
<p className="text-muted small mb-3">
Implement this screen using the matching routes in <code>app_laravel/routes/api.php</code>{' '}
(JWT <code>Authorization: Bearer</code>). See also <Link to="/docs">API docs</Link>.
@@ -47,7 +40,7 @@ export function CiPlaceholderPage() {
<p className="small mb-0">
<Link to="/app/browse">Browse all CI view routes</Link>
{' · '}
<Link to="/app/home">App home</Link>
</p>
</div>
)