claude-ws 0.4.0-beta.1 → 0.4.0-beta.2
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/[locale]/layout.tsx +4 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-ws",
|
|
3
|
-
"version": "0.4.0-beta.
|
|
3
|
+
"version": "0.4.0-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A beautifully crafted workspace interface for Claude Code with real-time streaming and local SQLite database",
|
|
6
6
|
"keywords": [
|
|
@@ -156,6 +156,7 @@
|
|
|
156
156
|
"eslint-config-next": "^16.1.6",
|
|
157
157
|
"fastify": "^5.8.2",
|
|
158
158
|
"fastify-plugin": "^5.1.0",
|
|
159
|
+
"geist": "^1.7.0",
|
|
159
160
|
"highlight.js": "^11.11.1",
|
|
160
161
|
"js-yaml": "^4.1.1",
|
|
161
162
|
"lowlight": "^3.3.0",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { Metadata, Viewport } from 'next';
|
|
2
|
-
import {
|
|
2
|
+
import { GeistSans } from 'geist/font/sans';
|
|
3
|
+
import { GeistMono } from 'geist/font/mono';
|
|
3
4
|
import { Toaster } from 'sonner';
|
|
4
5
|
import { ThemeProvider } from '@/components/providers/theme-provider';
|
|
5
6
|
import { SocketProvider } from '@/components/providers/socket-provider';
|
|
@@ -15,15 +16,8 @@ import '../globals.css';
|
|
|
15
16
|
export const dynamic = 'force-dynamic';
|
|
16
17
|
export const dynamicParams = true;
|
|
17
18
|
|
|
18
|
-
const geistSans =
|
|
19
|
-
|
|
20
|
-
subsets: ['latin'],
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
const geistMono = Geist_Mono({
|
|
24
|
-
variable: '--font-geist-mono',
|
|
25
|
-
subsets: ['latin'],
|
|
26
|
-
});
|
|
19
|
+
const geistSans = GeistSans;
|
|
20
|
+
const geistMono = GeistMono;
|
|
27
21
|
|
|
28
22
|
export const viewport: Viewport = {
|
|
29
23
|
width: 'device-width',
|