mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import React from "react"
|
||
import type { Metadata } from "next"
|
||
import { Inter } from "next/font/google"
|
||
import Script from "next/script"
|
||
|
||
import { Providers } from "@/components/providers"
|
||
|
||
import Shell from "./shell"
|
||
|
||
import "./globals.css"
|
||
|
||
const inter = Inter({ subsets: ["latin"] })
|
||
|
||
export const metadata: Metadata = {
|
||
title: "Roo Code – Your AI-Powered Dev Team in VS Code",
|
||
description:
|
||
"Roo Code puts an entire AI dev team right in your editor, outpacing closed tools with deep project-wide context, multi-step agentic coding, and unmatched developer-centric flexibility.",
|
||
alternates: {
|
||
canonical: "https://roocode.com",
|
||
},
|
||
icons: {
|
||
icon: [
|
||
{ url: "/favicon.ico" },
|
||
{ url: "/favicon-16x16.png", sizes: "16x16", type: "image/png" },
|
||
{ url: "/favicon-32x32.png", sizes: "32x32", type: "image/png" },
|
||
],
|
||
apple: [{ url: "/apple-touch-icon.png" }],
|
||
other: [
|
||
{
|
||
rel: "android-chrome-192x192",
|
||
url: "/android-chrome-192x192.png",
|
||
sizes: "192x192",
|
||
type: "image/png",
|
||
},
|
||
{
|
||
rel: "android-chrome-512x512",
|
||
url: "/android-chrome-512x512.png",
|
||
sizes: "512x512",
|
||
type: "image/png",
|
||
},
|
||
],
|
||
},
|
||
}
|
||
|
||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||
return (
|
||
<html lang="en" suppressHydrationWarning>
|
||
<head>
|
||
<link
|
||
rel="stylesheet"
|
||
type="text/css"
|
||
href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css"
|
||
/>
|
||
</head>
|
||
<body className={inter.className}>
|
||
{/* Google tag (gtag.js) */}
|
||
<Script src="https://www.googletagmanager.com/gtag/js?id=AW-17391954825" strategy="afterInteractive" />
|
||
<Script id="google-analytics" strategy="afterInteractive">
|
||
{`
|
||
window.dataLayer = window.dataLayer || [];
|
||
function gtag(){dataLayer.push(arguments);}
|
||
gtag('js', new Date());
|
||
gtag('config', 'AW-17391954825');
|
||
`}
|
||
</Script>
|
||
<div itemScope itemType="https://schema.org/WebSite">
|
||
<link itemProp="url" href="https://roocode.com" />
|
||
<meta itemProp="name" content="Roo Code" />
|
||
</div>
|
||
<Providers>
|
||
<Shell>{children}</Shell>
|
||
</Providers>
|
||
</body>
|
||
</html>
|
||
)
|
||
}
|