agent-Specialization/scripts/liquid-glass-demo/app/layout.tsx
JOJO 2f75c1c8bb feat: stable version before virtual monitor timing fix
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>
2025-12-13 17:12:12 +08:00

26 lines
653 B
TypeScript

import "./globals.css"
import { ppEditorialNewUltralightItalic, inter } from "./fonts"
import type React from "react"
import Script from "next/script"
export const metadata = {
title: "Dynamic Frame Layout",
description: "A dynamic frame layout with custom fonts",
generator: 'v0.app'
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className={`${ppEditorialNewUltralightItalic.variable} ${inter.variable}`}>
<body className={inter.className}>
{children}
<Script src="/liquid-glass.js" strategy="afterInteractive" />
</body>
</html>
)
}