import React from 'react'; import { Helmet } from 'react-helmet'; const JsonLd = () => { const schema = { "@context": "https://schema.org", "@type": "ExerciseGym", "name": "Indesport Fighting Club", "image": "https://indesport.es/wp-content/uploads/2023/01/indesport-club.jpg", "@id": "https://indesport.es/", "url": "https://indesport.es/", "telephone": "+34 641 55 78 57", "address": { "@type": "PostalAddress", "streetAddress": "C/ del Maestro Mingote, 50002 Zaragoza", "addressLocality": "Zaragoza", "postalCode": "50002", "addressCountry": "ES" }, "openingHoursSpecification": [ { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"], "opens": "10:00", "closes": "22:00" }, { "@type": "OpeningHoursSpecification", "dayOfWeek": "Sunday", "opens": "10:00", "closes": "14:00" } ], "priceRange": "$$", "sameAs": [ "https://www.instagram.com/club_indesport_zaragoza" ] }; return ( ); }; export default JsonLd;