mirror of https://github.com/kortix-ai/suna.git
41 lines
885 B
TypeScript
41 lines
885 B
TypeScript
import { Metadata } from 'next';
|
|
import { siteConfig } from '@/lib/site';
|
|
|
|
export const metadata: Metadata = {
|
|
title: siteConfig.name,
|
|
description: siteConfig.description,
|
|
keywords: ['Kortix Suna', 'AI', 'Agent'],
|
|
authors: [
|
|
{
|
|
name: 'Kortix AI Corp',
|
|
url: 'https://kortix.ai',
|
|
},
|
|
],
|
|
creator: 'Kortix AI Corp',
|
|
openGraph: {
|
|
type: 'website',
|
|
locale: 'en_US',
|
|
url: siteConfig.url,
|
|
title: siteConfig.name,
|
|
description: siteConfig.description,
|
|
siteName: siteConfig.name,
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
title: siteConfig.name,
|
|
description: siteConfig.description,
|
|
creator: '@kortixai',
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
'max-video-preview': -1,
|
|
'max-image-preview': 'large',
|
|
'max-snippet': -1,
|
|
},
|
|
},
|
|
};
|