{"id":13583,"date":"2025-12-27T13:55:58","date_gmt":"2025-12-27T11:55:58","guid":{"rendered":"https:\/\/rockmedia.gr\/home\/"},"modified":"2026-09-03T10:50:00","modified_gmt":"2026-09-03T07:50:00","slug":"home","status":"publish","type":"page","link":"https:\/\/rockmedia.gr\/en\/","title":{"rendered":"Home"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section threejs-layer\">\n<div class=\"et_pb_row_0 et_pb_row et_pb_gutters1 et_block_row\">\n<div class=\"et_pb_column_0 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_code_0 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\"><div id=\"three-container\"><\/div>\n\n<style>\n\n#three-container {\n    position: fixed;\n    top: 0;\n    left: 0;\n\n    width: 100vw;\n    height: 100vh;\n\n    z-index: 1;\n\n    pointer-events: none;\n  background-color:#000000;\n}\n\n#three-container canvas {\n    display: block;\n    width: 100%;\n    height: 100%;\n}\n\n<\/style>\n\n\n<script type=\"module\">\n\nimport * as THREE from 'https:\/\/cdn.jsdelivr.net\/npm\/three@0.180.0\/build\/three.module.js';\n\n\n\/* ==========================================\n   CONTAINER\n   ========================================== *\/\n\nconst container =\n    document.getElementById('three-container');\n\n\n\/* ==========================================\n   SCENE\n   ========================================== *\/\n\nconst scene =\n    new THREE.Scene();\n\n\n\/* ==========================================\n   CAMERA\n   ========================================== *\/\n\nconst camera =\n    new THREE.PerspectiveCamera(\n        45,\n        window.innerWidth \/ window.innerHeight,\n        0.1,\n        100\n    );\n\ncamera.position.z = 5;\n\n\n\/* ==========================================\n   RENDERER\n   ========================================== *\/\n\nconst renderer =\n    new THREE.WebGLRenderer({\n        antialias: true,\n        alpha: true\n    });\n\nrenderer.setPixelRatio(\n    Math.min(window.devicePixelRatio, 2)\n);\n\nrenderer.setSize(\n    window.innerWidth,\n    window.innerHeight\n);\n\ncontainer.appendChild(\n    renderer.domElement\n);\n\n\n\/* ==========================================\n   SPHERE\n   ========================================== *\/\n\nconst geometry =\n    new THREE.SphereGeometry(\n        1.0,\n        8,\n        8\n    );\n\n\n\/* ==========================================\n   MATERIAL\n   ========================================== *\/\n\nconst material =\n    new THREE.MeshBasicMaterial({\n        color: 0xff2020,\n        wireframe: true,\n        transparent: true,\n        opacity: 0.35\n    });\n\n\n\/* ==========================================\n   CREATE SPHERE\n   ========================================== *\/\n\nconst sphere =\n    new THREE.Mesh(\n        geometry,\n        material\n    );\n\nscene.add(sphere);\n\n\n\/* ==========================================\n   RESPONSIVE SIZE\n   ========================================== *\/\n\nfunction updateSphereSize() {\n\n    const width =\n        window.innerWidth;\n\n\n    if (width <= 767) {\n\n        sphere.scale.set(\n            0.65,\n            0.65,\n            0.65\n        );\n\n    }\n\n    else if (width <= 1024) {\n\n        sphere.scale.set(\n            0.85,\n            0.85,\n            0.85\n        );\n\n    }\n\n    else {\n\n        sphere.scale.set(\n            1,\n            1,\n            1\n        );\n\n    }\n\n}\n\nupdateSphereSize();\n\n\n\/* ==========================================\n   ROTATION\n   ========================================== *\/\n\nlet scrollRotation = 0;\n\nlet currentRotation = 0;\n\nlet lastScrollY =\n    window.scrollY;\n\n\nconst automaticRotationSpeed =\n    0.0005;\n\n\n\/* ==========================================\n   SCROLL\n   ========================================== *\/\n\nwindow.addEventListener(\n    'scroll',\n    () => {\n\n        const currentScrollY =\n            window.scrollY;\n\n        const scrollDelta =\n            currentScrollY -\n            lastScrollY;\n\n\n        \/\/ Down = RIGHT\n        \/\/ Up = LEFT\n\n        scrollRotation -=\n            scrollDelta * 0.008;\n\n\n        lastScrollY =\n            currentScrollY;\n\n    },\n    {\n        passive: true\n    }\n);\n\n\n\/* ==========================================\n   ANIMATION\n   ========================================== *\/\n\nfunction animate(time) {\n\n    requestAnimationFrame(\n        animate\n    );\n\n\n    \/* --------------------------------------\n       AUTOMATIC ROTATION\n       -------------------------------------- *\/\n\n    const automaticRotation =\n        time *\n        automaticRotationSpeed;\n\n\n    const targetRotation =\n        automaticRotation +\n        scrollRotation;\n\n\n    currentRotation +=\n        (\n            targetRotation -\n            currentRotation\n        ) * 1.08;\n\n\n    sphere.rotation.y =\n        currentRotation;\n\n\n    \/* --------------------------------------\n       FLOATING\n       -------------------------------------- *\/\n\n    const floatAmountY =\n        0.12;\n\n    const floatAmountX =\n        0.18;\n\n\n    const floatSpeedY =\n        0.001;\n\n    const floatSpeedX =\n        0.0007;\n\n\n    sphere.position.y =\n        Math.sin(\n            time * floatSpeedY\n        ) *\n        floatAmountY;\n\n\n    sphere.position.x =\n        Math.sin(\n            time * floatSpeedX\n        ) *\n        floatAmountX;\n\n\n    \/* --------------------------------------\n       RENDER\n       -------------------------------------- *\/\n\n    renderer.render(\n        scene,\n        camera\n    );\n\n}\n\n\n\/* ==========================================\n   START\n   ========================================== *\/\n\nrequestAnimationFrame(\n    animate\n);\n\n\n\/* ==========================================\n   RESIZE\n   ========================================== *\/\n\nwindow.addEventListener(\n    'resize',\n    () => {\n\n        const width =\n            window.innerWidth;\n\n        const height =\n            window.innerHeight;\n\n\n        camera.aspect =\n            width \/ height;\n\n        camera.updateProjectionMatrix();\n\n\n        renderer.setSize(\n            width,\n            height\n        );\n\n\n        renderer.setPixelRatio(\n            Math.min(\n                window.devicePixelRatio,\n                2\n            )\n        );\n\n\n        updateSphereSize();\n\n    }\n);\n\n<\/script>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_1 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_1 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone et_flex_column_24_24_phoneWide et_flex_column_24_24_tabletWide et_flex_column_24_24_widescreen et_flex_column_24_24_ultraWide\">\n<section class=\"et_pb_fullwidth_header_0 et_pb_fullwidth_header et_pb_bg_layout_dark et_pb_text_align_left et_pb_module et_flex_module\"><div class=\"et_pb_fullwidth_header_container left\"><div class=\"header-content-container center\"><div class=\"header-content et_flex_module\"><h1 class=\"et_pb_module_header\">Alex Zandros<\/h1><span class=\"et_pb_fullwidth_header_subhead\">Web Developer and Designer<\/span><div class=\"et_pb_header_button_wrapper\"><a class=\"et_pb_button et_pb_more_button et_pb_button_one\" href=\"https:\/\/rockmedia.gr\/en\/portfolio\/\" data-icon=\"9\">PORTFOLIO<\/a><a class=\"et_pb_button et_pb_more_button et_pb_button_two\" href=\"https:\/\/www.linkedin.com\/in\/alex-heliopoulos-33553442\/\" data-icon=\"9\">LINKEDIN<\/a><\/div><\/div><\/div><\/div><div class=\"et_pb_fullwidth_header_overlay\"><\/div><div class=\"et_pb_fullwidth_header_scroll\"><\/div><\/section>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_specialty et_pb_gutters3 et_block_section\"><div class=\"et_pb_row et_block_row\">\n<div class=\"et_pb_column_2 et_pb_column et_pb_column_single et_pb_column_1_2 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_0 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_blurb_container\"><h3 class=\"et_pb_module_header\">About me <\/h3><div class=\"et_pb_blurb_description\"><p>For over 10 years, I have been helping people and businesses build their online presence.<\/p>\n<p><\/p>\n<p>To me, creating a website\/store is an art form: an ongoing conversation between a company and the people it wants to reach. My job is to help guide that conversation by combining the right words, the right graphics, and the right timing.<\/p>\n<p><\/p>\n<p>In every project, I combine creativity, technology, and business goals to achieve meaningful connection. <\/p>\n<p><\/p>\n<p>&nbsp;<\/p>\n<\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_3 et_pb_column et_pb_specialty_column et_pb_column_1_2 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_row_inner_0 et_pb_row_inner et_block_row\">\n<div class=\"et_pb_column_inner_0 et_pb_column_inner et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_heading_0 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">WHAT DO I DO<\/h1><\/div><\/div>\n\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h2><span style=\"color: #ffffff;\">Website Developer<\/span> \u03ba\u03b1\u03b9 Designer<\/h2>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_inner_1 et_pb_row_inner et_pb_gutters2 et_block_row\">\n<div class=\"et_pb_column_inner_1 et_pb_column_inner et_pb_column et_pb_column_1_4 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_1 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Custom UI\/UX Design<\/h4><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_inner_2 et_pb_column_inner et_pb_column et_pb_column_1_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_2 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Custom Apps<\/h4><\/div><\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_inner_2 et_pb_row_inner et_pb_gutters2 et_block_row\">\n<div class=\"et_pb_column_inner_3 et_pb_column_inner et_pb_column et_pb_column_1_4 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_3 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Web Hosting<\/h4><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_inner_4 et_pb_column_inner et_pb_column et_pb_column_1_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_blurb_4 et_pb_blurb et_pb_bg_layout_light et_pb_blurb_position_top et_pb_module et_block_module\"><div class=\"et_pb_blurb_content\"><div class=\"et_pb_blurb_container\"><h4 class=\"et_pb_module_header\">Website Content<\/h4><\/div><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n\n<div class=\"et_pb_section_3 et_pb_section et_section_regular et_block_section\" id=\"rm-services\">\n<div class=\"et_pb_row_2 et_pb_row et_block_row\">\n<div class=\"et_pb_column_4 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_heading_1 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">SKILLS<\/h1><\/div><\/div>\n\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>my services<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Complete solutions for designing,developing,and operating websites and eshops<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_3 et_pb_row et_pb_equal_columns et_pb_gutters2 et_block_row\">\n<div class=\"et_pb_column_5 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough service-card\">\n<div class=\"et_pb_icon_0 et_pb_icon et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">\ue609<\/span><\/span><\/div>\n\n<div class=\"et_pb_heading_2 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Website Design<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_3 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Interfaces that impress with an emphasis on the user experience. Professional, attractive Design for a good first impression.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_4 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module service-tags\"><div class=\"et_pb_text_inner\"><p><span>Architecture<\/span>\u00a0 <span>Colors<\/span>\u00a0 <span>Navigation<\/span><\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_6 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough service-card\">\n<div class=\"et_pb_icon_1 et_pb_icon et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">\ue00d<\/span><\/span><\/div>\n\n<div class=\"et_pb_heading_3 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Website Development<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_5 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Responsive websites with modern technologies. We add custom apps and develop custom code according to your needs.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_6 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module service-tags\"><div class=\"et_pb_text_inner\"><p><span>Speed<\/span>\u00a0 <span>Personalization<\/span>\u00a0 <span>Applications<\/span><\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_7 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough service-card\">\n<div class=\"et_pb_icon_2 et_pb_icon et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">\ue015<\/span><\/span><\/div>\n\n<div class=\"et_pb_heading_4 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Build your Eshop<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_7 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Ecommerce solutions that increase your sales. Smart displays, points of interest, easy payments.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_8 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module service-tags\"><div class=\"et_pb_text_inner\"><p><span>Attractive Design<\/span>\u00a0 <span>Direct interfaces<\/span><\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_4 et_pb_row et_pb_equal_columns et_pb_gutters2 et_block_row\">\n<div class=\"et_pb_column_8 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough service-card\">\n<div class=\"et_pb_icon_3 et_pb_icon et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">\ue027<\/span><\/span><\/div>\n\n<div class=\"et_pb_heading_5 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Web Hosting and Support<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_9 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Your website's files are stored in a high-end Data Center. You receive technical support from the website dveloper himself.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_10 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module service-tags\"><div class=\"et_pb_text_inner\"><p><span>Security<\/span>\u00a0 <span>Speed<\/span>\u00a0 <span>Upgrades<\/span><\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_9 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough service-card\">\n<div class=\"et_pb_icon_4 et_pb_icon et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">i<\/span><\/span><\/div>\n\n<div class=\"et_pb_heading_6 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Content Management<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_11 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Immediate response to design changes. Add, remove and edit pages. Changes to photos, text, interface points.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_12 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module service-tags\"><div class=\"et_pb_text_inner\"><p><span>New Pages<\/span>\u00a0 <span>Articles<\/span>\u00a0 <span>Products<\/span><\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_10 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough service-card\">\n<div class=\"et_pb_icon_5 et_pb_icon et_pb_module et_block_module\"><span class=\"et_pb_icon_wrap\"><span class=\"et-pb-icon\">\ue0e9<\/span><\/span><\/div>\n\n<div class=\"et_pb_heading_7 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Performance Optimization<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_13 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Fast, efficient product and service pages. Best practices for increasing visibility in search engines and on Social Networks.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_14 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module service-tags\"><div class=\"et_pb_text_inner\"><p><span>On-Page SEO<\/span>\u00a0 <span>CDN<\/span>\u00a0 <span>Content Management<\/span><\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_4 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_5 et_pb_row et_block_row\">\n<div class=\"et_pb_column_11 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_heading_8 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">RECOMMENDATIONS<\/h1><\/div><\/div>\n\n<div class=\"et_pb_text_15 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>What my clients say<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_16 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>My client's trust is the greatest reward<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_6 et_pb_row et_block_row\">\n<div class=\"et_pb_column_12 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_testimonial_0 et_pb_testimonial et_pb_testimonial_no_image et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_testimonial_inner\"><div class=\"et_pb_testimonial_description\"><div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\"><p class=\"stars\">\u2605\u2605\u2605\u2605\u2605<\/p>\n<p>RockMedia successfully undertook and completed the new web site of <span style=\"color: #ff0000;\"><a href=\"http:\/\/www.debrief.gr\/\" style=\"color: #ff0000;\">Debrief<\/a><\/span>. With consistency, methodicality and in a short period of time, the collaboration yielded a functional result that satisfied us.<br \/>Our new website \u201cjust Rocks\u201d!<\/p>\n<\/div><\/div><div class=\"et_pb_testimonial_author\">Elena Nikolakopoulou<\/div><div class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_company\">debrief.gr<\/span><\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_13 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_testimonial_1 et_pb_testimonial et_pb_testimonial_no_image et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_testimonial_inner\"><div class=\"et_pb_testimonial_description\"><div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\"><p class=\"stars\">\u2605\u2605\u2605\u2605\u2605<\/p>\n<p>I have been working with Alexandros since 2017. Alexandros is an excellent \"digital\" professional, who can put himself in the shoes of his clients, always taking care of the challenges they may face. I would definitely recommend him to any company looking for a professional to add value to their digital transformation and improve their image.<\/p>\n<\/div><\/div><div class=\"et_pb_testimonial_author\">George Tsonis<\/div><div class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_company\">Mybio.gr<\/span><\/div><\/div><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_14 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_testimonial_2 et_pb_testimonial et_pb_testimonial_no_image et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_testimonial_inner\"><div class=\"et_pb_testimonial_description\"><div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\"><p class=\"stars\">\u2605\u2605\u2605\u2605\u2605<\/p>\n<p><span>\u201cFor the International Day of Light <a href=\"\/?p=11314\">website<\/a>, Alexandros proposed and implemented an excellent creative through which the importance of light in our lives was highlighted, thus giving it the special character it needed. Very good collaboration at all levels!\u201d<\/span><\/p>\n<\/div><\/div><div class=\"et_pb_testimonial_author\">Poli Vlassi<\/div><div class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_company\">lightday.gr<\/span><\/div><\/div><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_5 et_pb_section et_section_regular et_block_section\" id=\"rm-services\">\n<div class=\"et_pb_row_7 et_pb_row et_block_row\">\n<div class=\"et_pb_column_15 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_heading_9 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">PORTFOLIO<\/h1><\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_8 et_pb_row et_block_row\">\n<div class=\"et_pb_column_16 et_pb_column et_pb_column_1_2 et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_17 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p><span style=\"color: #ffffff;\">Selected<\/span> Projects<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_17 et_pb_column et_pb_column_1_2 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_0_wrapper\"><a class=\"et_pb_button_0 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/rockmedia.gr\/en\/portfolio\/\" data-icon=\"9\">View more Projects<\/a><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_9 et_pb_row et_block_row\">\n<div class=\"et_pb_column_18 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough et_clickable\">\n<div class=\"et_pb_image_0 et_pb_image et_pb_module et_block_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/08\/F-A-Executive-Consultants-social.webp\" title=\"F-A-Executive-Consultants-social\" width=\"1915\" height=\"1080\" srcset=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/08\/F-A-Executive-Consultants-social.webp 1915w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/08\/F-A-Executive-Consultants-social-1280x722.webp 1280w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/08\/F-A-Executive-Consultants-social-980x553.webp 980w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/08\/F-A-Executive-Consultants-social-480x271.webp 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1915px, 100vw\" class=\"wp-image-14417\" \/><\/span><\/div>\n\n<div class=\"et_pb_text_18 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Accountant Office<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_heading_10 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">F&A Executive Consultants<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_19 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Corporate website for an Accounting Firm. Built enitrely with custom code.<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_19 et_pb_column et_pb_column_1_3 et_block_column et_pb_css_mix_blend_mode_passthrough et_clickable\">\n<div class=\"et_pb_image_1 et_pb_image et_pb_module et_block_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2025\/11\/rockmedia-passenger-homepage-social.webp\" width=\"1920\" height=\"925\" srcset=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2025\/11\/rockmedia-passenger-homepage-social.webp 1920w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2025\/11\/rockmedia-passenger-homepage-social-1280x617.webp 1280w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2025\/11\/rockmedia-passenger-homepage-social-980x472.webp 980w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2025\/11\/rockmedia-passenger-homepage-social-480x231.webp 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1920px, 100vw\" class=\"wp-image-13349\" title=\"rockmedia-passenger-homepage-social\" \/><\/span><\/div>\n\n<div class=\"et_pb_text_20 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Travel Website<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_heading_11 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Passenger<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_21 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Informative Travel News Website. Built on WordPress with Divi Theme.<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_20 et_pb_column et_pb_column_1_3 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough et_clickable\">\n<div class=\"et_pb_image_2 et_pb_image et_pb_module et_block_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2023\/03\/rockmedia-portfolio-arimar-social.webp\" title=\"rockmedia portfolio arimar social\" width=\"1912\" height=\"922\" srcset=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2023\/03\/rockmedia-portfolio-arimar-social.webp 1912w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2023\/03\/rockmedia-portfolio-arimar-social-1280x617.webp 1280w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2023\/03\/rockmedia-portfolio-arimar-social-980x473.webp 980w, https:\/\/rockmedia.gr\/wp-content\/uploads\/2023\/03\/rockmedia-portfolio-arimar-social-480x231.webp 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1912px, 100vw\" class=\"wp-image-14033\" \/><\/span><\/div>\n\n<div class=\"et_pb_text_22 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Travel Website<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_heading_12 et_pb_heading et_pb_module et_block_module\"><div class=\"et_pb_heading_container\"><h3 class=\"et_pb_module_header\">Arimar Travel<\/h3><\/div><\/div>\n\n<div class=\"et_pb_text_23 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Corporate Website for travel and car rentals. Built on WordPress with Divi Theme.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_10 et_pb_row et_block_row\">\n<div class=\"et_pb_column_21 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_module et_pb_button_module_wrapper et_pb_button_1_wrapper\"><a class=\"et_pb_button_1 et_pb_button et_pb_bg_layout_light et_pb_module et_block_module\" href=\"https:\/\/rockmedia.gr\/en\/portfolio\/\" data-icon=\"9\">View more Projects<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":9777,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-13583","page","type-page","status-publish","has-post-thumbnail","hentry"],"dsm_author":{"name":"Alex Zandros","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/f8fc87907765204796ee6a1b88811c22e49c19feca365ad0e4f89fe61eeaca5f?s=96&d=mm&r=g","archive_link":"https:\/\/rockmedia.gr\/en\/author\/alex\/","biodata":"Website Designer &amp;  Full Stack Developer"},"dsm_categories":[],"dsm_attachment_categories":[],"dsm_featured_image":{"thumbnail":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-150x150.jpg","medium":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-300x88.jpg","medium_large":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-768x226.jpg","large":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-1024x301.jpg","1536x1536":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-1536x451.jpg","2048x2048":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg","et-pb-post-main-image":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-400x250.jpg","et-pb-post-main-image-fullwidth":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-1080x564.jpg","et-pb-portfolio-image":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-400x284.jpg","et-pb-portfolio-module-image":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-510x382.jpg","et-pb-portfolio-image-single":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-1080x317.jpg","et-pb-gallery-module-image-portrait":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-400x516.jpg","et-pb-post-main-image-fullwidth-large":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg","et-pb-image--responsive--desktop":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-1280x376.jpg","et-pb-image--responsive--tablet":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-980x288.jpg","et-pb-image--responsive--phone":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19-480x141.jpg","full":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg"},"dsm_comment_count":0,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>RockMedia: Your image on the web.<\/title>\n<meta name=\"description\" content=\"We design, develop, host and support Websites and Eshops.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rockmedia.gr\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"RockMedia: We build your digital brand.\" \/>\n<meta property=\"og:description\" content=\"We design, develop, host and support Websites and Eshops.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rockmedia.gr\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"RockMedia\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/rockmedia.gr\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-03T07:50:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"564\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"RockMedia: We build your digital brand.\" \/>\n<meta name=\"twitter:description\" content=\"We design, develop, host and support Websites and Eshops.\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/\",\"url\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/\",\"name\":\"RockMedia: Your image on the web.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/rockmedia.gr\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/web-dev-19.jpg\",\"datePublished\":\"2025-12-27T11:55:58+00:00\",\"dateModified\":\"2026-09-03T07:50:00+00:00\",\"description\":\"We design, develop, host and support Websites and Eshops.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rockmedia.gr\\\/en\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/#primaryimage\",\"url\":\"https:\\\/\\\/rockmedia.gr\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/web-dev-19.jpg\",\"contentUrl\":\"https:\\\/\\\/rockmedia.gr\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/web-dev-19.jpg\",\"width\":1920,\"height\":564},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rockmedia.gr\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/#website\",\"url\":\"https:\\\/\\\/rockmedia.gr\\\/\",\"name\":\"RockMedia\",\"description\":\"Web Design Services\",\"publisher\":{\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rockmedia.gr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/#organization\",\"name\":\"RockMedia\",\"url\":\"https:\\\/\\\/rockmedia.gr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/rockmedia.gr\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/rockmedia-organizational-logo.webp\",\"contentUrl\":\"https:\\\/\\\/rockmedia.gr\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/rockmedia-organizational-logo.webp\",\"width\":950,\"height\":512,\"caption\":\"RockMedia\"},\"image\":{\"@id\":\"https:\\\/\\\/rockmedia.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/rockmedia.gr\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"RockMedia: Your image on the web.","description":"We design, develop, host and support Websites and Eshops.","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:\/\/rockmedia.gr\/en\/","og_locale":"en_US","og_type":"article","og_title":"RockMedia: We build your digital brand.","og_description":"We design, develop, host and support Websites and Eshops.","og_url":"https:\/\/rockmedia.gr\/en\/","og_site_name":"RockMedia","article_publisher":"https:\/\/www.facebook.com\/rockmedia.gr","article_modified_time":"2026-09-03T07:50:00+00:00","og_image":[{"width":1920,"height":564,"url":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"RockMedia: We build your digital brand.","twitter_description":"We design, develop, host and support Websites and Eshops.","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/rockmedia.gr\/en\/","url":"https:\/\/rockmedia.gr\/en\/","name":"RockMedia: Your image on the web.","isPartOf":{"@id":"https:\/\/rockmedia.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rockmedia.gr\/en\/#primaryimage"},"image":{"@id":"https:\/\/rockmedia.gr\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg","datePublished":"2025-12-27T11:55:58+00:00","dateModified":"2026-09-03T07:50:00+00:00","description":"We design, develop, host and support Websites and Eshops.","breadcrumb":{"@id":"https:\/\/rockmedia.gr\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rockmedia.gr\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rockmedia.gr\/en\/#primaryimage","url":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg","contentUrl":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2022\/12\/web-dev-19.jpg","width":1920,"height":564},{"@type":"BreadcrumbList","@id":"https:\/\/rockmedia.gr\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rockmedia.gr\/en\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/rockmedia.gr\/#website","url":"https:\/\/rockmedia.gr\/","name":"RockMedia","description":"Web Design Services","publisher":{"@id":"https:\/\/rockmedia.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rockmedia.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rockmedia.gr\/#organization","name":"RockMedia","url":"https:\/\/rockmedia.gr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rockmedia.gr\/#\/schema\/logo\/image\/","url":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/02\/rockmedia-organizational-logo.webp","contentUrl":"https:\/\/rockmedia.gr\/wp-content\/uploads\/2026\/02\/rockmedia-organizational-logo.webp","width":950,"height":512,"caption":"RockMedia"},"image":{"@id":"https:\/\/rockmedia.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/rockmedia.gr"]}]}},"_links":{"self":[{"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/pages\/13583","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/comments?post=13583"}],"version-history":[{"count":17,"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/pages\/13583\/revisions"}],"predecessor-version":[{"id":14531,"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/pages\/13583\/revisions\/14531"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/media\/9777"}],"wp:attachment":[{"href":"https:\/\/rockmedia.gr\/en\/wp-json\/wp\/v2\/media?parent=13583"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}