import { DefaultSeoProps } from 'next-seo';

const SITE_URL = process.env.SITE_URL || 'https://www.iict.org';

const config: DefaultSeoProps = {
  defaultTitle: ' Indian Institute of Creative Technologies',
  titleTemplate: '%s - Indian Institute of Creative Technologies',
  description: `Indian Institute of Creative Technologies (IICT) empowers learners with cutting-edge courses in Animation, VFX, Gaming & Design to build future-ready careers.`,
  canonical: SITE_URL,
  openGraph: {
    type: 'website',
    locale: 'en_IE',
    url: SITE_URL,
    siteName: 'Indian Institute of Creative Technologies',
    images: [
      {
        url: SITE_URL + '/og-image.png',
        alt: 'Indian Institute of Creative Technologies',
        width: 1200,
        height: 630,
      },
    ],
  },
  twitter: {
    handle: '@iict',
    site: '@iict',
    cardType: 'summary_large_image',
  },
};

export default config;
