import type { MetadataRoute } from 'next'

export default function robots(): MetadataRoute.Robots {
  return {
    rules: [
      {
        userAgent: '*',
        allow: [
            '/',
            '/fixtures/',
            '/contact/',
            '/about/',
            '/over-under_1.5/',
            '/over-under_2.5/',
            '/over-under_3.5/',
            '/double_chance/',
            '/draw/',
            '/gg-ng/',
            '/other/'
        ],
        disallow: [
          '/disclaimer/',
          '/policy/',
          '/terms/',
        ],
      },
    ],
    sitemap: 'https://JusticeTips.com.ng/sitemap.xml',
  }
}
