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>
19 lines
375 B
TypeScript
19 lines
375 B
TypeScript
import localFont from "next/font/local"
|
|
|
|
export const customFont = localFont({
|
|
src: [
|
|
{
|
|
path: "../public/fonts/your-font-regular.woff2",
|
|
weight: "300",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "../public/fonts/your-font-italic.woff2",
|
|
weight: "400",
|
|
style: "italic",
|
|
},
|
|
// Add more variations as needed
|
|
],
|
|
display: "swap",
|
|
})
|