'use client';

import React from 'react';

export const StructuredData = () => {
  const schemaData = {
    '@context': 'https://schema.org',
    '@type': 'ProfessionalService',
    name: 'Aura Stack',
    description: 'Professional web design and development agency in Nairobi, Kenya',
    url: 'https://aurastack.co.ke',
    telephone: '+254713095009',
    email: 'aurastacklimited@gmail.com',
    address: {
      '@type': 'PostalAddress',
      addressCountry: 'KE',
      addressRegion: 'Nairobi',
    },
    areaServed: {
      '@type': 'City',
      name: 'Nairobi',
    },
    service: [
      {
        '@type': 'Service',
        name: 'Web Design and Development',
        description: 'Professional website design and development services',
      },
      {
        '@type': 'Service',
        name: 'Mobile App Development',
        description: 'Android and iOS mobile application development',
      },
      {
        '@type': 'Service',
        name: 'Software Development',
        description: 'Custom software solutions for businesses',
      },
    ],
    sameAs: [
      'https://www.facebook.com/share/1MQf9dcQEN/',
      'https://www.tiktok.com/@aura_stack_?_r=1&_t=ZM-91uRn80SmIF',
      'https://www.linkedin.com/in/aura-stack-269006372',
    ],
  };

  return (
    <script
      type="application/ld+json"
      dangerouslySetInnerHTML={{ __html: JSON.stringify(schemaData) }}
    />
  );
};
