{"id":8197,"date":"2021-02-11T15:33:42","date_gmt":"2021-02-11T15:33:42","guid":{"rendered":"https:\/\/aranya.se\/contact\/"},"modified":"2024-02-23T14:50:40","modified_gmt":"2024-02-23T14:50:40","slug":"contact","status":"publish","type":"page","link":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"\n<section class=\"switchable feature-large feature-boxed original white\">\n\t<div class=\"container\">\n\t\t<div class=\"row justify-content-around\">\n\t\t\t<div class=\"col-md-6\">\n\t\t\t\t<img decoding=\"async\" alt=\"Image\" class=\"border--round box-shadow-wide\" src=\"https:\/\/aranya-old.hemsida.eu\/wp-content\/uploads\/2021\/02\/Coffee.png\">\n\t\t\t<\/div>\n\t\t\t<div class=\"col-md-6 col-lg-5\">\n\t\t\t\t<div class=\"switchable__text\">\n\t\t\t\t\t<h2>We are very social so visit or feel free to contact us.<\/h2>\n\t\t\t\t\t<div class=\"lead\"><p><strong>T<\/strong><strong>elephone<\/strong><br \/>\n08 &#8211; 120 580 60<br \/>\ninfo@aranya.se<\/p>\n<p><strong>Support<\/strong><br \/>\n08 &#8211; 522 258 81<br \/>\nsupport@aranya.se<\/p>\n<p><strong>Sales contact<\/strong><br \/>\n0700 05 88 17<\/p>\n<p><strong>Economy<br \/>\n<\/strong> ekonomi@aranya.se<br \/>\n0760 21 90 88<\/p>\n<p><strong>Supplier invoices<\/strong><br \/>\ninvoice@aranya.se<\/p>\n<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n<section class=\"switchable feature-large feature-boxed switchable--switch white\">\n\t<div class=\"container\">\n\t\t<div class=\"row justify-content-around\">\n\t\t\t<div class=\"col-md-6 map\">\n\t\t\t\t\t\t\t\t<div class=\"acf-map box-shadow-shallow acf-map-3762\" data-zoom=\"16\">\n\t\t\t\t\t<div class=\"marker\" data-lat=\"59.3537225\" data-lng=\"17.9760656\"><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class=\"col-md-6 col-lg-5\">\n\t\t\t\t<div class=\"switchable__text\">\n\t\t\t\t\t<h2>Stockholm<\/h2>\n\t\t\t\t\t<div class=\"lead\"><p>Hemv\u00e4rnsgatan 11<br \/>\n171 54 Solna<\/p>\n<p>Tel: 08 &#8211; 120 580 60<\/p>\n<p>SE556963373701<\/p>\n<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n<!--ACF MAP HELPER CODE-->\n<style type=\"text\/css\">\n\n.acf-map {\n\twidth: 100%;\n\theight: 100%;\n\tborder-radius: 5px;\n}\n\n\/* Fixes potential theme css conflict.*\/\n.acf-map img {\n   max-width: inherit !important;\n}\n<\/style>\n<script type=\"text\/javascript\">\n(function( $ ) {\n\n\/**\n * initMap\n *\n * Renders a Google Map onto the selected jQuery element\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @return  object The map instance.\n *\/\nfunction initMap( $el ) {\n\n\t\/\/ Find marker elements within map.\n\tvar $markers = $el.find('.marker');\n\n\t\/\/ Create gerenic map.\n\tvar mapArgs = {\n\t\tzoom        : $el.data('zoom') || 16,\n\t\tmapTypeId   : google.maps.MapTypeId.ROADMAP,\n\t\tdisableDefaultUI: true\n\t};\n\tvar map = new google.maps.Map( $el[0], mapArgs );\n\n\t\/\/ Add markers.\n\tmap.markers = [];\n\t$markers.each(function(){\n\t\tinitMarker( $(this), map );\n\t});\n\n\t\/\/ Center map based on markers.\n\tcenterMap( map );\n\n\t\/\/ Return map instance.\n\treturn map;\n}\n\n\/**\n * initMarker\n *\n * Creates a marker for the given jQuery element and map.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @param   object The map instance.\n * @return  object The marker instance.\n *\/\nfunction initMarker( $marker, map ) {\n\n\t\/\/ Get position from marker.\n\tvar lat = $marker.data('lat');\n\tvar lng = $marker.data('lng');\n\tvar latLng = {\n\t\tlat: parseFloat( lat ),\n\t\tlng: parseFloat( lng )\n\t};\n\n\t\/\/ Create marker instance.\n\tvar marker = new google.maps.Marker({\n\t\tposition : latLng,\n\t\tmap: map\n\t});\n\n\t\/\/ Append to reference for later use.\n\tmap.markers.push( marker );\n\n\t\/\/ If marker contains HTML, add it to an infoWindow.\n\tif( $marker.html() ){\n\n\t\t\/\/ Create info window.\n\t\tvar infowindow = new google.maps.InfoWindow({\n\t\t\tcontent: $marker.html()\n\t\t});\n\n\t\t\/\/ Show info window when marker is clicked.\n\t\tgoogle.maps.event.addListener(marker, 'click', function() {\n\t\t\tinfowindow.open( map, marker );\n\t\t});\n\t}\n}\n\n\/**\n * centerMap\n *\n * Centers the map showing all markers in view.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   object The map instance.\n * @return  void\n *\/\nfunction centerMap( map ) {\n\n\t\/\/ Create map boundaries from all map markers.\n\tvar bounds = new google.maps.LatLngBounds();\n\tmap.markers.forEach(function( marker ){\n\t\tbounds.extend({\n\t\t\tlat: marker.position.lat(),\n\t\t\tlng: marker.position.lng()\n\t\t});\n\t});\n\n\t\/\/ Case: Single marker.\n\tif( map.markers.length == 1 ){\n\t\tmap.setCenter( bounds.getCenter() );\n\n\t\/\/ Case: Multiple markers.\n\t} else{\n\t\tmap.fitBounds( bounds );\n\t}\n}\n\n\/\/ Render maps on page load.\n$(document).ready(function(){\n\t$('.acf-map-3762').each(function(){\n\t\tvar map = initMap( $(this) );\n\t});\n});\n\n})(jQuery);\n<\/script>\n\n<section class=\"switchable feature-large feature-boxed original bg--secondary\">\n\t<div class=\"container\">\n\t\t<div class=\"row justify-content-around\">\n\t\t\t<div class=\"col-md-6 map\">\n\t\t\t\t\t\t\t\t<div class=\"acf-map box-shadow-shallow acf-map-1118\" data-zoom=\"16\">\n\t\t\t\t\t<div class=\"marker\" data-lat=\"57.6872\" data-lng=\"11.9996319\"><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class=\"col-md-6 col-lg-5\">\n\t\t\t\t<div class=\"switchable__text\">\n\t\t\t\t\t<h2>Gothenburg<\/h2>\n\t\t\t\t\t<div class=\"lead\"><p>Sk\u00e5rs Led 3<br \/>\n412 63 Gothenburg<\/p>\n<p>T: 0723 73 21 91<\/p>\n<p>SE556963373701<\/p>\n<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n<!--ACF MAP HELPER CODE-->\n<style type=\"text\/css\">\n\n.acf-map {\n\twidth: 100%;\n\theight: 100%;\n\tborder-radius: 5px;\n}\n\n\/* Fixes potential theme css conflict.*\/\n.acf-map img {\n   max-width: inherit !important;\n}\n<\/style>\n<script type=\"text\/javascript\">\n(function( $ ) {\n\n\/**\n * initMap\n *\n * Renders a Google Map onto the selected jQuery element\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @return  object The map instance.\n *\/\nfunction initMap( $el ) {\n\n\t\/\/ Find marker elements within map.\n\tvar $markers = $el.find('.marker');\n\n\t\/\/ Create gerenic map.\n\tvar mapArgs = {\n\t\tzoom        : $el.data('zoom') || 16,\n\t\tmapTypeId   : google.maps.MapTypeId.ROADMAP,\n\t\tdisableDefaultUI: true\n\t};\n\tvar map = new google.maps.Map( $el[0], mapArgs );\n\n\t\/\/ Add markers.\n\tmap.markers = [];\n\t$markers.each(function(){\n\t\tinitMarker( $(this), map );\n\t});\n\n\t\/\/ Center map based on markers.\n\tcenterMap( map );\n\n\t\/\/ Return map instance.\n\treturn map;\n}\n\n\/**\n * initMarker\n *\n * Creates a marker for the given jQuery element and map.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @param   object The map instance.\n * @return  object The marker instance.\n *\/\nfunction initMarker( $marker, map ) {\n\n\t\/\/ Get position from marker.\n\tvar lat = $marker.data('lat');\n\tvar lng = $marker.data('lng');\n\tvar latLng = {\n\t\tlat: parseFloat( lat ),\n\t\tlng: parseFloat( lng )\n\t};\n\n\t\/\/ Create marker instance.\n\tvar marker = new google.maps.Marker({\n\t\tposition : latLng,\n\t\tmap: map\n\t});\n\n\t\/\/ Append to reference for later use.\n\tmap.markers.push( marker );\n\n\t\/\/ If marker contains HTML, add it to an infoWindow.\n\tif( $marker.html() ){\n\n\t\t\/\/ Create info window.\n\t\tvar infowindow = new google.maps.InfoWindow({\n\t\t\tcontent: $marker.html()\n\t\t});\n\n\t\t\/\/ Show info window when marker is clicked.\n\t\tgoogle.maps.event.addListener(marker, 'click', function() {\n\t\t\tinfowindow.open( map, marker );\n\t\t});\n\t}\n}\n\n\/**\n * centerMap\n *\n * Centers the map showing all markers in view.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   object The map instance.\n * @return  void\n *\/\nfunction centerMap( map ) {\n\n\t\/\/ Create map boundaries from all map markers.\n\tvar bounds = new google.maps.LatLngBounds();\n\tmap.markers.forEach(function( marker ){\n\t\tbounds.extend({\n\t\t\tlat: marker.position.lat(),\n\t\t\tlng: marker.position.lng()\n\t\t});\n\t});\n\n\t\/\/ Case: Single marker.\n\tif( map.markers.length == 1 ){\n\t\tmap.setCenter( bounds.getCenter() );\n\n\t\/\/ Case: Multiple markers.\n\t} else{\n\t\tmap.fitBounds( bounds );\n\t}\n}\n\n\/\/ Render maps on page load.\n$(document).ready(function(){\n\t$('.acf-map-1118').each(function(){\n\t\tvar map = initMap( $(this) );\n\t});\n});\n\n})(jQuery);\n<\/script>\n\n<section class=\"switchable feature-large feature-boxed switchable--switch white\">\n\t<div class=\"container\">\n\t\t<div class=\"row justify-content-around\">\n\t\t\t<div class=\"col-md-6 map\">\n\t\t\t\t\t\t\t\t<div class=\"acf-map box-shadow-shallow acf-map-9026\" data-zoom=\"16\">\n\t\t\t\t\t<div class=\"marker\" data-lat=\"55.5943364\" data-lng=\"12.9999388\"><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class=\"col-md-6 col-lg-5\">\n\t\t\t\t<div class=\"switchable__text\">\n\t\t\t\t\t<h2>Malm\u00f6<\/h2>\n\t\t\t\t\t<div class=\"lead\"><p>S: t Johannesgatan 2, 4 tr<br \/>\n211 46 Malm\u00f6<\/p>\n<p>T: 070 275 77 73<\/p>\n<p>SE556963373701<\/p>\n<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n<!--ACF MAP HELPER CODE-->\n<style type=\"text\/css\">\n\n.acf-map {\n\twidth: 100%;\n\theight: 100%;\n\tborder-radius: 5px;\n}\n\n\/* Fixes potential theme css conflict.*\/\n.acf-map img {\n   max-width: inherit !important;\n}\n<\/style>\n<script type=\"text\/javascript\">\n(function( $ ) {\n\n\/**\n * initMap\n *\n * Renders a Google Map onto the selected jQuery element\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @return  object The map instance.\n *\/\nfunction initMap( $el ) {\n\n\t\/\/ Find marker elements within map.\n\tvar $markers = $el.find('.marker');\n\n\t\/\/ Create gerenic map.\n\tvar mapArgs = {\n\t\tzoom        : $el.data('zoom') || 16,\n\t\tmapTypeId   : google.maps.MapTypeId.ROADMAP,\n\t\tdisableDefaultUI: true\n\t};\n\tvar map = new google.maps.Map( $el[0], mapArgs );\n\n\t\/\/ Add markers.\n\tmap.markers = [];\n\t$markers.each(function(){\n\t\tinitMarker( $(this), map );\n\t});\n\n\t\/\/ Center map based on markers.\n\tcenterMap( map );\n\n\t\/\/ Return map instance.\n\treturn map;\n}\n\n\/**\n * initMarker\n *\n * Creates a marker for the given jQuery element and map.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @param   object The map instance.\n * @return  object The marker instance.\n *\/\nfunction initMarker( $marker, map ) {\n\n\t\/\/ Get position from marker.\n\tvar lat = $marker.data('lat');\n\tvar lng = $marker.data('lng');\n\tvar latLng = {\n\t\tlat: parseFloat( lat ),\n\t\tlng: parseFloat( lng )\n\t};\n\n\t\/\/ Create marker instance.\n\tvar marker = new google.maps.Marker({\n\t\tposition : latLng,\n\t\tmap: map\n\t});\n\n\t\/\/ Append to reference for later use.\n\tmap.markers.push( marker );\n\n\t\/\/ If marker contains HTML, add it to an infoWindow.\n\tif( $marker.html() ){\n\n\t\t\/\/ Create info window.\n\t\tvar infowindow = new google.maps.InfoWindow({\n\t\t\tcontent: $marker.html()\n\t\t});\n\n\t\t\/\/ Show info window when marker is clicked.\n\t\tgoogle.maps.event.addListener(marker, 'click', function() {\n\t\t\tinfowindow.open( map, marker );\n\t\t});\n\t}\n}\n\n\/**\n * centerMap\n *\n * Centers the map showing all markers in view.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   object The map instance.\n * @return  void\n *\/\nfunction centerMap( map ) {\n\n\t\/\/ Create map boundaries from all map markers.\n\tvar bounds = new google.maps.LatLngBounds();\n\tmap.markers.forEach(function( marker ){\n\t\tbounds.extend({\n\t\t\tlat: marker.position.lat(),\n\t\t\tlng: marker.position.lng()\n\t\t});\n\t});\n\n\t\/\/ Case: Single marker.\n\tif( map.markers.length == 1 ){\n\t\tmap.setCenter( bounds.getCenter() );\n\n\t\/\/ Case: Multiple markers.\n\t} else{\n\t\tmap.fitBounds( bounds );\n\t}\n}\n\n\/\/ Render maps on page load.\n$(document).ready(function(){\n\t$('.acf-map-9026').each(function(){\n\t\tvar map = initMap( $(this) );\n\t});\n});\n\n})(jQuery);\n<\/script>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":6,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-8197","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Aranya AB - Contact<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Aranya AB - Contact\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/\" \/>\n<meta property=\"og:site_name\" content=\"Aranya AB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/AranyaAB\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-23T14:50:40+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@AranyaTweets\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/\",\"url\":\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/\",\"name\":\"Aranya AB - Contact\",\"isPartOf\":{\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/#website\"},\"datePublished\":\"2021-02-11T15:33:42+00:00\",\"dateModified\":\"2024-02-23T14:50:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/contact\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Hem\",\"item\":\"https:\/\/aranya-old.hemsida.eu\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Contact\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/#website\",\"url\":\"https:\/\/aranya-old.hemsida.eu\/en\/\",\"name\":\"Aranya AB\",\"description\":\"Intelligence from source to destination\",\"publisher\":{\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/aranya-old.hemsida.eu\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/#organization\",\"name\":\"Aranya AB\",\"url\":\"https:\/\/aranya-old.hemsida.eu\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/aranya-old.hemsida.eu\/wp-content\/uploads\/2021\/02\/Logo_black.png\",\"contentUrl\":\"https:\/\/aranya-old.hemsida.eu\/wp-content\/uploads\/2021\/02\/Logo_black.png\",\"width\":2048,\"height\":458,\"caption\":\"Aranya AB\"},\"image\":{\"@id\":\"https:\/\/aranya-old.hemsida.eu\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/AranyaAB\",\"https:\/\/x.com\/AranyaTweets\",\"https:\/\/www.instagram.com\/aranya_ab\/\",\"https:\/\/www.linkedin.com\/company\/3666516\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Aranya AB - Contact","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/","og_locale":"en_US","og_type":"article","og_title":"Aranya AB - Contact","og_url":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/","og_site_name":"Aranya AB","article_publisher":"https:\/\/www.facebook.com\/AranyaAB","article_modified_time":"2024-02-23T14:50:40+00:00","twitter_card":"summary_large_image","twitter_site":"@AranyaTweets","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/","url":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/","name":"Aranya AB - Contact","isPartOf":{"@id":"https:\/\/aranya-old.hemsida.eu\/en\/#website"},"datePublished":"2021-02-11T15:33:42+00:00","dateModified":"2024-02-23T14:50:40+00:00","breadcrumb":{"@id":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aranya-old.hemsida.eu\/en\/contact\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/aranya-old.hemsida.eu\/en\/contact\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Hem","item":"https:\/\/aranya-old.hemsida.eu\/en\/"},{"@type":"ListItem","position":2,"name":"Contact"}]},{"@type":"WebSite","@id":"https:\/\/aranya-old.hemsida.eu\/en\/#website","url":"https:\/\/aranya-old.hemsida.eu\/en\/","name":"Aranya AB","description":"Intelligence from source to destination","publisher":{"@id":"https:\/\/aranya-old.hemsida.eu\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aranya-old.hemsida.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/aranya-old.hemsida.eu\/en\/#organization","name":"Aranya AB","url":"https:\/\/aranya-old.hemsida.eu\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aranya-old.hemsida.eu\/en\/#\/schema\/logo\/image\/","url":"https:\/\/aranya-old.hemsida.eu\/wp-content\/uploads\/2021\/02\/Logo_black.png","contentUrl":"https:\/\/aranya-old.hemsida.eu\/wp-content\/uploads\/2021\/02\/Logo_black.png","width":2048,"height":458,"caption":"Aranya AB"},"image":{"@id":"https:\/\/aranya-old.hemsida.eu\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/AranyaAB","https:\/\/x.com\/AranyaTweets","https:\/\/www.instagram.com\/aranya_ab\/","https:\/\/www.linkedin.com\/company\/3666516\/"]}]}},"_links":{"self":[{"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/pages\/8197","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/comments?post=8197"}],"version-history":[{"count":17,"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/pages\/8197\/revisions"}],"predecessor-version":[{"id":9808,"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/pages\/8197\/revisions\/9808"}],"wp:attachment":[{"href":"https:\/\/aranya-old.hemsida.eu\/en\/wp-json\/wp\/v2\/media?parent=8197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}