cue-console 0.1.7 → 0.1.8
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.
- package/package.json +2 -1
- package/src/app/globals.css +2 -2
- package/src/app/layout.tsx +2 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cue-console",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Cue Hub console launcher (Next.js UI)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": ["mcp", "cue", "console", "nextjs"],
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"@types/node": "^20",
|
|
37
37
|
"@dicebear/core": "^9.2.4",
|
|
38
38
|
"@dicebear/thumbs": "^9.2.4",
|
|
39
|
+
"@fontsource-variable/source-sans-3": "^5.2.8",
|
|
39
40
|
"better-sqlite3": "^12.5.0",
|
|
40
41
|
"class-variance-authority": "^0.7.1",
|
|
41
42
|
"clsx": "^2.1.1",
|
package/src/app/globals.css
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
@theme inline {
|
|
7
7
|
--color-background: var(--background);
|
|
8
8
|
--color-foreground: var(--foreground);
|
|
9
|
-
--font-sans:
|
|
10
|
-
--font-mono:
|
|
9
|
+
--font-sans: "Source Sans 3 Variable", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
|
|
10
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
11
11
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
12
12
|
--color-sidebar-border: var(--sidebar-border);
|
|
13
13
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
package/src/app/layout.tsx
CHANGED
|
@@ -1,18 +1,7 @@
|
|
|
1
1
|
import type { Metadata } from "next";
|
|
2
|
-
import
|
|
2
|
+
import "@fontsource-variable/source-sans-3";
|
|
3
3
|
import "./globals.css";
|
|
4
4
|
|
|
5
|
-
const geistSans = Source_Sans_3({
|
|
6
|
-
variable: "--font-geist-sans",
|
|
7
|
-
subsets: ["latin"],
|
|
8
|
-
weight: ["400", "500", "600", "700"],
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
const geistMono = Recursive({
|
|
12
|
-
variable: "--font-geist-mono",
|
|
13
|
-
subsets: ["latin"],
|
|
14
|
-
});
|
|
15
|
-
|
|
16
5
|
export const metadata: Metadata = {
|
|
17
6
|
title: "cue-console",
|
|
18
7
|
description: "AI agent group chat console",
|
|
@@ -26,7 +15,7 @@ export default function RootLayout({
|
|
|
26
15
|
return (
|
|
27
16
|
<html lang="en" suppressHydrationWarning>
|
|
28
17
|
<body
|
|
29
|
-
className=
|
|
18
|
+
className="antialiased"
|
|
30
19
|
suppressHydrationWarning
|
|
31
20
|
>
|
|
32
21
|
{children}
|