bgrun 3.3.3 → 3.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * bgrun Dashboard — Root Layout (Server Component)
3
3
  *
4
- * Renders the page shell: header with logo, version badge, and refresh button.
4
+ * Minimal layout no header, just the page content.
5
5
  */
6
6
 
7
7
  export default function RootLayout({ children }: { children: any }) {
@@ -14,29 +14,8 @@ export default function RootLayout({ children }: { children: any }) {
14
14
  <title>bgrun Dashboard</title>
15
15
  <meta name="description" content="bgrun — Bun Background Runner — Process Manager Dashboard" />
16
16
  </head>
17
- <body>
17
+ <body className="antialiased">
18
18
  <div className="container">
19
- <header className="header">
20
- <div className="logo">
21
- <div className="logo-icon">⚡</div>
22
- <div>
23
- <h1>bgrun</h1>
24
- <span className="logo-subtitle">Bun Background Runner</span>
25
- </div>
26
- </div>
27
- <div className="header-actions">
28
- <span className="version-badge" id="version-badge">...</span>
29
- <button className="btn btn-ghost" id="refresh-btn">
30
- <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
31
- <polyline points="23 4 23 10 17 10" />
32
- <polyline points="1 20 1 14 7 14" />
33
- <path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" />
34
- </svg>
35
- Refresh
36
- </button>
37
- </div>
38
- </header>
39
-
40
19
  <main id="melina-page-content">
41
20
  {children}
42
21
  </main>