mirror of https://github.com/kortix-ai/suna.git
banner and metadata
This commit is contained in:
parent
489254d05a
commit
790076da0c
Binary file not shown.
After Width: | Height: | Size: 304 KiB |
|
@ -26,7 +26,64 @@ export const metadata: Metadata = {
|
|||
default: siteConfig.name,
|
||||
template: `%s - ${siteConfig.name}`,
|
||||
},
|
||||
description: siteConfig.description,
|
||||
description: "Suna is a fully open source AI assistant that helps you accomplish real-world tasks with ease. Through natural conversation, Suna becomes your digital companion for research, data analysis, and everyday challenges.",
|
||||
keywords: ["AI", "artificial intelligence", "browser automation", "web scraping", "file management", "AI assistant", "open source", "research", "data analysis"],
|
||||
authors: [{ name: "Kortix Team", url: "https://suna.so" }],
|
||||
creator: "Kortix Team - Adam Cohen Hillel, Marko Kraemer, Domenico Gagliardi, and Quoc Dat Le",
|
||||
publisher: "Kortix Team - Adam Cohen Hillel, Marko Kraemer, Domenico Gagliardi, and Quoc Dat Le",
|
||||
category: "Technology",
|
||||
applicationName: "Suna",
|
||||
formatDetection: {
|
||||
telephone: false,
|
||||
email: false,
|
||||
address: false,
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
googleBot: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
},
|
||||
openGraph: {
|
||||
title: "Suna - Open Source Generalist AI Agent",
|
||||
description: "Suna is a fully open source AI assistant that helps you accomplish real-world tasks with ease through natural conversation.",
|
||||
url: siteConfig.url,
|
||||
siteName: "Suna",
|
||||
images: [{
|
||||
url: "/banner.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "Suna - Open Source Generalist AI Agent",
|
||||
type: "image/png",
|
||||
}],
|
||||
locale: "en_US",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Suna - Open Source Generalist AI Agent",
|
||||
description: "Suna is a fully open source AI assistant that helps you accomplish real-world tasks with ease through natural conversation.",
|
||||
creator: "@kortixai",
|
||||
site: "@kortixai",
|
||||
images: [{
|
||||
url: "/banner.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "Suna - Open Source Generalist AI Agent",
|
||||
}],
|
||||
},
|
||||
icons: {
|
||||
icon: [
|
||||
{ url: "/favicon.ico", sizes: "any" },
|
||||
],
|
||||
shortcut: "/favicon.ico",
|
||||
},
|
||||
manifest: "/manifest.json",
|
||||
alternates: {
|
||||
canonical: siteConfig.url,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
|
Loading…
Reference in New Issue