mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 17:24:57 +00:00
- Created dbal/shared/ui directory for shared UI components - Implemented getStatusResponse() for status API endpoint - Implemented DBALDaemonPage component with metadata - Updated tsconfig.json @dbal-ui path to point to dbal/shared/ui - Updated next.config.ts webpack alias for @dbal-ui - Components support both development and production DBAL modes Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
19 lines
378 B
TypeScript
19 lines
378 B
TypeScript
/**
|
|
* DBAL Daemon Page
|
|
*/
|
|
export const metadata = {
|
|
title: 'DBAL Daemon',
|
|
description: 'DBAL Daemon Management',
|
|
}
|
|
|
|
export function DBALDaemonPage() {
|
|
return (
|
|
<div>
|
|
<h1>DBAL Daemon</h1>
|
|
<p>DBAL Daemon management interface.</p>
|
|
<p>Development mode: Direct TypeScript DBAL</p>
|
|
<p>Production mode: C++ Daemon via WebSocket</p>
|
|
</div>
|
|
)
|
|
}
|