mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
* feat(desktop): refresh navigation and visual foundation * test(desktop): support webview component tests * fix(desktop): resolve review feedback blockers * fix(desktop): preserve workspace choices during startup * fix(desktop): restore sidebar session sorting * fix(desktop): harden session startup state * test(desktop): cover late workspace restoration
41 lines
750 B
TypeScript
41 lines
750 B
TypeScript
import { Analytics } from "@vercel/analytics/next";
|
|
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Cline",
|
|
description: "Build software with Cline.",
|
|
icons: {
|
|
icon: [
|
|
{
|
|
url: "/32x32.png",
|
|
media: "(prefers-color-scheme: light)",
|
|
},
|
|
{
|
|
url: "/32x32.png",
|
|
media: "(prefers-color-scheme: dark)",
|
|
},
|
|
{
|
|
url: "/icon.svg",
|
|
type: "image/svg+xml",
|
|
},
|
|
],
|
|
apple: "/icon.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html className="h-full" lang="en">
|
|
<body className="h-full min-h-screen font-sans antialiased">
|
|
{children}
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|