| 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, |
| }, |
| }, |
| }; |
|
|