import type { Metadata, Viewport } from 'next';
import Services from './Services';

export const metadata: Metadata = {
  title: 'Services | Isokariari Nigeria Limited',
  description:
    'With over five decades of experience, we provide comprehensive engineering and construction services to meet the diverse needs of our clients.',
  authors: [{ name: 'O.K. Isokariari Nigeria Limited' }],
  openGraph: {
    title: 'Projects | Isokariari Nigeria Limited',
    description:
      'With over five decades of experience, we provide comprehensive engineering and construction services to meet the diverse needs of our clients.',
    type: 'website',
    images: ['/images/logo.png'],
  },
  icons: {
    icon: '/images/favicon.ico',
    apple: '/images/apple-touch-icon.png',
    shortcut: '/images/favicon-32x32.png',
  },
  keywords: [
    'O.K. Isokariari Nigeria Limited',
    'Services',
    'Construction Services',
    'Engineering Services',
    'Project Management',
    'Nigeria',
  ],
  robots: {
    index: true,
    follow: true,
    nocache: false,
    noimageindex: false,
  },
  applicationName: 'O.K. Isokariari Nigeria Limited',
  formatDetection: {
    telephone: false,
    email: false,
    address: false,
    date: false,
    url: false,
  },
  verification: {
    google: 'google-site-verification-code',
    yandex: 'yandex-verification-code',
    me: 'me-verification-code',
  },
  creator: 'Echtronic Solutions',
  publisher: 'O.K. Isokariari Nigeria Limited',
  category: 'Engineering',
  twitter: {
    card: 'summary_large_image',
    site: '@lovable_dev',
    images: ['/images/logo.png'],
  },
};

export const viewport: Viewport = {
  width: 'device-width',
  initialScale: 1,
  maximumScale: 1,
  userScalable: false,
};

export default function ServicesPage() {
  return <Services />;
}
