Spaces:
Running
Running
File size: 1,319 Bytes
372531f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
import type { Metadata } from "next";
import { Lexend } from "next/font/google";
import PlausibleProvider from "next-plausible";
import "./globals.css";
const inter = Lexend({ subsets: ["latin"] });
let title = "GPT Researcher";
let description =
"LLM based autonomous agent that conducts local and web research on any topic and generates a comprehensive report with citations.";
let url = "https://github.com/assafelovic/gpt-researcher";
let ogimage = "/favicon.ico";
let sitename = "GPT Researcher";
export const metadata: Metadata = {
metadataBase: new URL(url),
title,
description,
icons: {
icon: "/favicon.ico",
},
openGraph: {
images: [ogimage],
title,
description,
url: url,
siteName: sitename,
locale: "en_US",
type: "website",
},
twitter: {
card: "summary_large_image",
images: [ogimage],
title,
description,
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
<PlausibleProvider domain="localhost:3000" />
</head>
<body
className={`${inter.className} flex min-h-screen flex-col justify-between`}
>
{children}
</body>
</html>
);
}
|