{"id":31007,"date":"2025-11-21T14:02:38","date_gmt":"2025-11-21T06:02:38","guid":{"rendered":"https:\/\/yelaoshr.edu.my\/free-finnish-book\/"},"modified":"2025-12-04T18:55:35","modified_gmt":"2025-12-04T10:55:35","slug":"free-finnish-book","status":"publish","type":"page","link":"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/","title":{"rendered":"Free Finnish Book"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"31007\" class=\"elementor elementor-31007 elementor-30807\" data-elementor-post-type=\"page\"> \t\t\t\t<div class=\"elementor-element elementor-element-de9639b e-flex e-con-boxed e-con e-parent\" data-id=\"de9639b\" data-element_type=\"container\" data-e-type=\"container\"> \t\t\t\t\t<div class=\"e-con-inner\"> \t\t\t\t<div class=\"elementor-element elementor-element-5055b0f elementor-widget elementor-widget-html\" data-id=\"5055b0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\"> \t\t\t\t<div class=\"elementor-widget-container\"> \t\t\t\t\t<!--    COPY AND PASTE THIS ENTIRE BLOCK INTO AN ELEMENTOR \"HTML\" WIDGET  --> <div id=\"elementor-react-root\" class=\"font-sans antialiased text-[#3C2415]\"><\/div>  <!-- 1. Tailwind CSS --> <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>  <!-- 2. Import Map for React & Icons --> <script type=\"importmap\">\n{\n  \"imports\": {\n    \"react\": \"https:\/\/esm.sh\/react@18.2.0\",\n    \"react-dom\/client\": \"https:\/\/esm.sh\/react-dom@18.2.0\/client\",\n    \"lucide-react\": \"https:\/\/esm.sh\/lucide-react@0.263.1\"\n  }\n}\n<\/script>  <!-- 3. Babel for JSX compilation in browser --> <script src=\"https:\/\/unpkg.com\/@babel\/standalone\/babel.min.js\"><\/script>  <!-- 4. Application Logic --> <script type=\"text\/babel\" data-type=\"module\">\nimport React, { useState } from 'react';\nimport { createRoot } from 'react-dom\/client';\nimport { \n  ArrowRight, CheckCircle, AlertCircle, Lock, Gift, Check, HelpCircle \n} from 'lucide-react';\n\n\/\/ --- COMPONENTS ---\n\nconst LeadForm = ({ className = '' }) => {\n  const [formData, setFormData] = useState({ name: '', email: '', phone: '' });\n  const [isSubmitting, setIsSubmitting] = useState(false);\n  const [isSuccess, setIsSuccess] = useState(false);\n\n  const handleSubmit = (e) => {\n    \/\/ Standard HTML Form submission to hidden iframe\n    setIsSubmitting(true);\n    setTimeout(() => {\n      setIsSubmitting(false);\n      setIsSuccess(true);\n    }, 1500);\n  };\n\n  if (isSuccess) {\n    return (\n      <div className={`bg-white p-8 rounded-xl shadow-2xl border-t-4 border-[#00AB8E] text-center relative z-20 ${className}`}>\n        <div className=\"flex justify-center mb-4\"><CheckCircle className=\"w-16 h-16 text-[#00AB8E]\" \/><\/div>\n        <h3 className=\"text-2xl font-bold text-[#3C2415] mb-2\">Success!<\/h3>\n        <p className=\"text-[#3C2415]\/80 mb-6 leading-relaxed\">\n          Our team will provide the promo link within 24 hours.<br\/>\n          Please check your Email or WhatsApp.\n        <\/p>\n        <p className=\"text-[#00AB8E] font-bold text-lg\">Thank you for your interest and support!<\/p>\n      <\/div>\n    );\n  }\n\n  return (\n    <div className={`bg-white p-6 md:p-8 rounded-xl shadow-2xl border-t-8 border-[#00AB8E] relative z-10 ${className}`}>\n      <iframe name=\"hidden_submission_frame\" className=\"hidden\" style={{ display: 'none' }}><\/iframe>\n\n      <div className=\"text-center mb-6\">\n        <div className=\"inline-flex items-center gap-1 bg-[#FF8392] text-white text-xs font-bold px-3 py-1 rounded-full mb-4 animate-pulse shadow-sm\">\n          <Gift className=\"w-3 h-3\" \/><span>Limited Time Special \u2022 Limited Spots Only<\/span>\n        <\/div>\n        <h3 className=\"text-xl md:text-2xl font-black text-[#3C2415] leading-snug mb-3\">\n          Fill in your details to get priority access to<br\/>\n          <span className=\"text-[#00AB8E]\">\"Finnish Education is what Malaysian children need the most\"<\/span><br\/>\n          and unlock <span className=\"text-red-600\">FREE<\/span> physical book redemption eligibility\n        <\/h3>\n      <\/div>\n      <form \n        action=\"https:\/\/teacheryap-cms.net\/temp\/zzz_freebook.php\"\n        method=\"POST\"\n        target=\"hidden_submission_frame\"\n        onSubmit={handleSubmit} \n        className=\"space-y-4\"\n      >\n        <div>\n          <label className=\"block text-sm font-medium text-[#3C2415] mb-1\">Your Name<\/label>\n          <input type=\"text\" name=\"name\" required className=\"w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-[#00AB8E] outline-none transition text-[#3C2415]\" placeholder=\"Enter your name\" value={formData.name} onChange={(e) => setFormData({...formData, name: e.target.value})} \/>\n        <\/div>\n        <div>\n          <label className=\"block text-sm font-medium text-[#3C2415] mb-1\">Email Address<\/label>\n          <input type=\"email\" name=\"email\" required className=\"w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-[#00AB8E] outline-none transition text-[#3C2415]\" placeholder=\"example@email.com\" value={formData.email} onChange={(e) => setFormData({...formData, email: e.target.value})} \/>\n        <\/div>\n        <div>\n          <label className=\"block text-sm font-medium text-[#3C2415] mb-1\">Phone Number<\/label>\n          <input type=\"tel\" name=\"phone\" required className=\"w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-[#00AB8E] outline-none transition text-[#3C2415]\" placeholder=\"012-3456789\" value={formData.phone} onChange={(e) => setFormData({...formData, phone: e.target.value})} \/>\n        <\/div>\n        \n        {\/* Info Block Before Button *\/}\n        <div className=\"bg-[#FFF349]\/20 p-4 rounded-lg border border-[#FFF349]\/50 text-xs md:text-sm text-[#3C2415]\/90 space-y-1\">\n          <p>\u2022 Original Book Price: RM69.90.<\/p>\n        <\/div>\n\n        <button type=\"submit\" disabled={isSubmitting} className=\"w-full bg-[#00AB8E] hover:bg-[#008f75] text-white font-black text-lg py-4 rounded-lg shadow-lg transform hover:-translate-y-1 transition-all duration-200 flex items-center justify-center group\">\n          {isSubmitting ? 'Processing...' : <>YES! I Want Priority Access <ArrowRight className=\"ml-2 w-5 h-5 group-hover:translate-x-1 transition-transform\" \/><\/>}\n        <\/button>\n        <div className=\"flex items-center justify-center mt-4 space-x-2 text-xs text-[#98A4AE]\"><Lock className=\"w-3 h-3\" \/><span>Your information will be kept strictly confidential<\/span><\/div>\n      <\/form>\n    <\/div>\n  );\n};\n\nconst Footer = () => (\n  <footer className=\"bg-white py-8 border-t border-slate-200\">\n    <div className=\"container mx-auto px-4 text-center\"><p className=\"text-[#98A4AE] text-sm\">Copyright \u00a9 YELAOSHR 2025. All Rights Reserved<\/p><\/div>\n  <\/footer>\n);\n\nconst App = () => {\n  return (\n    <div className=\"min-h-screen bg-gray-50 flex flex-col font-sans\">\n      <section className=\"relative pt-10 pb-20 md:pt-20 md:pb-32 overflow-hidden bg-gradient-to-b from-white to-[#FED9B3]\/30 flex-grow\">\n        <div className=\"absolute top-0 left-0 w-full h-full overflow-hidden z-0\"><div className=\"absolute right-0 top-0 w-1\/3 h-full bg-[#FFF349]\/20 skew-x-12 transform translate-x-1\/2\"><\/div><\/div>\n        <div className=\"container mx-auto px-4 max-w-6xl relative z-10\">\n          <div className=\"flex flex-col lg:flex-row gap-12 items-start\">\n            <div className=\"lg:w-7\/12 pt-4\">\n              <div className=\"inline-block bg-[#FFF349] text-[#3C2415] px-4 py-1 rounded-full font-bold text-sm mb-6 shadow-sm\">YelaoShr\u00ae 20th Anniversary Educational Masterpiece<\/div>\n              <h1 className=\"text-3xl md:text-4xl lg:text-4xl font-black text-[#3C2415] leading-tight mb-6\">The Key Malaysian Parents Have Missed!<br \/>Why Finnish Education Creates<br\/><span className=\"relative inline-block\"><span className=\"relative z-10\">More Confident, Happier, and Better Learners<\/span><span className=\"absolute bottom-2 left-0 w-full h-3 bg-[#FFF349] -rotate-1 z-0 opacity-80\"><\/span><\/span><\/h1>\n              <p className=\"text-xl text-[#3C2415]\/80 font-medium mb-8 leading-relaxed\">Limited Time Offer: Get exclusive access to \"The Finnish Education Malaysian Kids Need\"\u2014<br\/>Discover why the world\u2019s #1 education system matters for your child \u2014 all in one powerful book.<\/p>\n              <div className=\"space-y-6 mb-10 text-[#3C2415]\">\n                <div className=\"bg-white\/50 p-5 rounded-xl border border-[#FED9B3]\">\n                  <p className=\"font-bold mb-3\">In Malaysia, we often hear:<\/p>\n                  <p className=\"italic text-[#3C2415]\/70 mb-4 pl-4 border-l-4 border-[#FFF349]\">\"Children must win at the starting line! If your grades aren\u2019t good, there\u2019s no future. The more tuition, the better!\"<\/p>\n                  <p className=\"font-bold mb-2\">But in reality, our children face:<\/p>\n                  <ul className=\"space-y-2\">\n                    <li className=\"flex items-start\"><AlertCircle className=\"w-5 h-5 text-[#FF8392] mr-2 flex-shrink-0 mt-0.5\" \/><span>Increasing academic pressure<\/span><\/li>\n                    <li className=\"flex items-start\"><AlertCircle className=\"w-5 h-5 text-[#FF8392] mr-2 flex-shrink-0 mt-0.5\" \/><span>Fear of asking questions and making mistakes<\/span><\/li>\n                    <li className=\"flex items-start\"><AlertCircle className=\"w-5 h-5 text-[#FF8392] mr-2 flex-shrink-0 mt-0.5\" \/><span>Rising levels of anxiety<\/span><\/li>\n                  <\/ul>\n                <\/div>\n                <div className=\"pl-2\">\n                  <p className=\"font-bold text-lg mb-3\">In contrast, Finland \u2014 the world\u2019s top education system \u2014 nurtures children who are:<\/p>\n                  <ul className=\"space-y-3\">\n                     {[\"Confident, happy, and self-motivated learners\", \"Thriving without tuition, without rankings, yet consistently top-tier in global assessments\"].map(txt => <li key={txt} className=\"flex items-start\"><div className=\"flex-shrink-0 w-6 h-6 rounded-full bg-[#00AB8E]\/10 flex items-center justify-center mr-3 mt-0.5\"><Check className=\"w-4 h-4 text-[#00AB8E]\" \/><\/div><span className=\"font-medium\">{txt}<\/span><\/li>)}\n                  <\/ul>\n                <\/div>\n                <div className=\"flex items-start bg-[#00AB8E]\/5 p-4 rounded-lg\"><HelpCircle className=\"w-6 h-6 text-[#00AB8E] mr-3 flex-shrink-0 mt-0.5\" \/><p className=\"font-bold text-[#00AB8E] text-lg leading-snug\">How do they achieve this?<br\/>Why must Malaysian parents know these truths?<\/p><\/div>\n              <\/div>\n            <\/div>\n            <div className=\"lg:w-5\/12 w-full lg:sticky lg:top-8\">\n              <div className=\"relative\" id=\"lead-form\">\n                <div className=\"absolute -top-20 -right-10 w-40 h-56 md:w-48 md:h-64 rounded-lg shadow-2xl transform rotate-6 z-0 hidden lg:block overflow-hidden border-4 border-white\"><img decoding=\"async\" src=\"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2025\/07\/book-preview-cn-scaled.jpg\" alt=\"Book Cover\" className=\"w-full h-full object-cover rounded-sm opacity-100\" \/><\/div>\n                <LeadForm \/>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/section>\n      <Footer \/>\n    <\/div>\n  );\n};\n\n\/\/ Mount the app\nconst root = createRoot(document.getElementById('elementor-react-root'));\nroot.render(<App \/>);\n<\/script>\t\t\t\t<\/div> \t\t\t\t<\/div> \t\t\t\t\t<\/div> \t\t\t\t<\/div> \t\t<div class=\"elementor-element elementor-element-1f6e7b2 e-flex e-con-boxed e-con e-parent\" data-id=\"1f6e7b2\" data-element_type=\"container\" data-e-type=\"container\"> \t\t\t\t\t<div class=\"e-con-inner\"> \t\t\t\t<div class=\"elementor-element elementor-element-49ca84b elementor-widget elementor-widget-spacer\" data-id=\"49ca84b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\"> \t\t\t\t<div class=\"elementor-widget-container\"> \t\t\t\t\t\t\t<div class=\"elementor-spacer\"> \t\t\t<div class=\"elementor-spacer-inner\"><\/div> \t\t<\/div> \t\t\t\t\t\t<\/div> \t\t\t\t<\/div> \t\t\t\t\t<\/div> \t\t\t\t<\/div> \t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":27,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-31007","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Free Finnish Book &#8226; YelaoShr\u00ae<\/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:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Free Finnish Book &#8226; YelaoShr\u00ae\" \/>\n<meta property=\"og:url\" content=\"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/\" \/>\n<meta property=\"og:site_name\" content=\"YelaoShr\u00ae\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/yelaoshr\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-04T10:55:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2021\/08\/\u95ea\u5361\u8ba4\u5b57-\u6548\u679c\u5927\u4e0d\u540c-01-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"674\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/\",\"url\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/\",\"name\":\"Free Finnish Book &#8226; YelaoShr\u00ae\",\"isPartOf\":{\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/#website\"},\"datePublished\":\"2025-11-21T06:02:38+00:00\",\"dateModified\":\"2025-12-04T10:55:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/#breadcrumb\"},\"inLanguage\":\"zh-CN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Free Finnish Book\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/#website\",\"url\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/\",\"name\":\"YelaoShr\u00ae\",\"description\":\"(One-on-One) Creative Learning Language Centre &amp; Preschool\",\"publisher\":{\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-CN\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/#organization\",\"name\":\"YelaoShr\u00ae\",\"url\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-CN\",\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2021\/08\/YLS-Logo-Transparency-Background-03-1.png\",\"contentUrl\":\"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2021\/08\/YLS-Logo-Transparency-Background-03-1.png\",\"width\":741,\"height\":827,\"caption\":\"YelaoShr\u00ae\"},\"image\":{\"@id\":\"https:\/\/yelaoshr.edu.my\/zh-hans\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/yelaoshr\",\"https:\/\/www.instagram.com\/yelaoshr\/\",\"https:\/\/www.youtube.com\/c\/YELAOSHREducationGroup\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Free Finnish Book &#8226; YelaoShr\u00ae","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:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/","og_locale":"zh_CN","og_type":"article","og_title":"Free Finnish Book &#8226; YelaoShr\u00ae","og_url":"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/","og_site_name":"YelaoShr\u00ae","article_publisher":"https:\/\/www.facebook.com\/yelaoshr","article_modified_time":"2025-12-04T10:55:35+00:00","og_image":[{"width":1280,"height":674,"url":"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2021\/08\/\u95ea\u5361\u8ba4\u5b57-\u6548\u679c\u5927\u4e0d\u540c-01-2.png","type":"image\/png"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/","url":"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/","name":"Free Finnish Book &#8226; YelaoShr\u00ae","isPartOf":{"@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/#website"},"datePublished":"2025-11-21T06:02:38+00:00","dateModified":"2025-12-04T10:55:35+00:00","breadcrumb":{"@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/#breadcrumb"},"inLanguage":"zh-CN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/free-finnish-book\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/yelaoshr.edu.my\/zh-hans\/"},{"@type":"ListItem","position":2,"name":"Free Finnish Book"}]},{"@type":"WebSite","@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/#website","url":"https:\/\/yelaoshr.edu.my\/zh-hans\/","name":"YelaoShr\u00ae","description":"(One-on-One) Creative Learning Language Centre &amp; Preschool","publisher":{"@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yelaoshr.edu.my\/zh-hans\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-CN"},{"@type":"Organization","@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/#organization","name":"YelaoShr\u00ae","url":"https:\/\/yelaoshr.edu.my\/zh-hans\/","logo":{"@type":"ImageObject","inLanguage":"zh-CN","@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/#\/schema\/logo\/image\/","url":"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2021\/08\/YLS-Logo-Transparency-Background-03-1.png","contentUrl":"https:\/\/yelaoshr.edu.my\/wp-content\/uploads\/2021\/08\/YLS-Logo-Transparency-Background-03-1.png","width":741,"height":827,"caption":"YelaoShr\u00ae"},"image":{"@id":"https:\/\/yelaoshr.edu.my\/zh-hans\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/yelaoshr","https:\/\/www.instagram.com\/yelaoshr\/","https:\/\/www.youtube.com\/c\/YELAOSHREducationGroup"]}]}},"_links":{"self":[{"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/pages\/31007","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/comments?post=31007"}],"version-history":[{"count":1,"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/pages\/31007\/revisions"}],"predecessor-version":[{"id":31011,"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/pages\/31007\/revisions\/31011"}],"wp:attachment":[{"href":"https:\/\/yelaoshr.edu.my\/zh-hans\/wp-json\/wp\/v2\/media?parent=31007"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}