Current status includes: - Virtual monitor surface and components - Monitor store for state management - Tool call animations and transitions - Liquid glass shader integration Known issue to fix: Tool status display timing - "正在xx" appears after tool execution completes instead of when tool call starts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
563 B
TypeScript
22 lines
563 B
TypeScript
import { Inter } from "next/font/google"
|
|
import type { NextFontWithVariable } from "next/dist/compiled/@next/font"
|
|
import type { NextFont } from "next/font"
|
|
|
|
const ppEditorialNewUltralightItalic: NextFontWithVariable & NextFont = {
|
|
className: "font-pp-editorial",
|
|
style: {
|
|
fontFamily: "PPEditorialNew-UltralightItalic",
|
|
fontWeight: "200",
|
|
fontStyle: "italic",
|
|
},
|
|
variable: "--font-pp-editorial",
|
|
}
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
variable: "--font-inter",
|
|
})
|
|
|
|
export { ppEditorialNewUltralightItalic, inter }
|