import { useState } from 'react'; import { FileText, Box } from 'lucide-react'; import { ApiDocViewer } from './components/ApiDocViewer'; import BlueprintPage from './components/blueprint/BlueprintPage'; import { config } from './config'; type Page = 'docs' | 'blueprint'; function App() { const [currentPage, setCurrentPage] = useState('docs'); document.title = config.projectName; return (

{config.projectName}

{currentPage === 'docs' ? : }
); } export default App;