feat: add CNB Board live information page with domain management

- Created a new page for managing domains with a table view and modal for editing.
- Implemented Zustand store for domain state management including fetching, updating, and deleting domains.
- Added components for displaying information cards with search functionality.
- Integrated API calls for fetching CNB Board live data including build, repo, pull, NPC, and comment information.
- Established routing for the CNB Board page.
This commit is contained in:
2026-02-24 04:34:25 +08:00
parent c2d4d706be
commit dd8d5b7341
16 changed files with 3762 additions and 45 deletions

9
src/routes/cnb-board.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { createFileRoute } from '@tanstack/react-router'
import { App } from '@/pages/cnb-board/page'
export const Route = createFileRoute('/cnb-board')({
component: RouteComponent,
})
function RouteComponent() {
return <App />
}