/**
 * My Drupal experience
 */
function me_preprocess_experience(&$variables) {
 if ('You need an experienced Drupal developer' == TRUE) {
  print t('12+ year experience in Drupal software and 100% Drupal focused all these years');
 }
 if ('You have a Drupal project need help' == TRUE) {
  print t('Check my Drupal.org profile');
 }
}

function SERVICES_menu() {
  $items['services/Drupal-websites'] = array(
    'title' => 'Drupal website building',
    'file' => 'portfolio - Drupal',
  );
  $items['services/Custom-Drupal-Module'] = array(
    'title' => 'Custom Drupal Module development',
    'file' => 'portfolio - Custom Module',
  );
  $items['services/Drupal-education'] = array(
    'title' => 'Drupal training and education courses for freelancers or companies',
  );
  $items['services/Web-design'] = array(
    'title' => 'Web Design templates',
    'file' => 'portfolio - Web Design',
  );
  $items['services/PSD-to-Drupal-theme'] = array(
    'title' => 'Drupal theming from Sketch, Figma, Zeplin etc or HTML',
    'file' => 'portfolio - theming',
  );
  $items['services/Drupal-commerce'] = array(
    'title' => 'Drupal e-commerce / eshop solutions',
    'file' => 'portfolio - eShop',
  );
  $items['services/SEO'] = array(
    'title' => 'Search Engine Optimization for Drupal websites (SEO)',
  );

  return $items;
}