import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@nextsparkjs/core/components/ui/card' import { DOCS_REGISTRY } from '@nextsparkjs/registries/docs-registry' import { sel } from '@nextsparkjs/core/selectors' import { BookOpen, Folder, FileText, ArrowRight } from 'lucide-react' import Link from 'next/link' import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Documentation', description: 'Complete documentation for the application' } export default function DocsPage() { const sections = DOCS_REGISTRY.public return (
{/* Hero Section */}
Documentation

Documentation

Guides and reference documentation to help you get the most out of the application.

{/* Documentation Sections */} {sections.length > 0 ? (
{sections.map((section) => (
{section.title}
{section.pages.length} {section.pages.length === 1 ? 'page' : 'pages'}
    {section.pages.map((page) => (
  • {page.title}
  • ))}
))}
) : (

No Documentation Available

Documentation will appear here once it is added to the project.

)}
) }