mirror of
https://github.com/aljazceru/AgentGPT.git
synced 2025-12-18 06:24:20 +01:00
🚀 Add meta
This commit is contained in:
@@ -7,12 +7,23 @@ interface LayoutProps {
|
||||
}
|
||||
|
||||
const DefaultLayout = (props: LayoutProps) => {
|
||||
const description =
|
||||
"Assemble, configure, and deploy autonomous AI Agents in your browser.";
|
||||
return (
|
||||
<div className="flex min-h-screen min-h-screen flex-col bg-gradient-to-b from-[#2B2B2B] to-[#1F1F1F]">
|
||||
<Head>
|
||||
<title>Agent-GPT</title>
|
||||
<meta name="description" content="Agent-GPT b Reworkd.ai" />
|
||||
<meta name="description" content={description} />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta property="og:url" content="https://agentgpt.reworkd.ai/" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content={description} />
|
||||
<meta property="og:description" content={description} />
|
||||
<meta property="og:title" content="Reworkd." />
|
||||
<meta
|
||||
property="og:image"
|
||||
content="https://raw.githubusercontent.com/reworkd/extension/main/assets/icon512.png"
|
||||
/>
|
||||
</Head>
|
||||
<DottedGridBackground>{props.children}</DottedGridBackground>
|
||||
{/*<Footer />*/}
|
||||
|
||||
Reference in New Issue
Block a user