{"id":9314,"date":"2025-08-25T12:42:03","date_gmt":"2025-08-25T07:12:03","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=9314"},"modified":"2025-08-25T12:44:28","modified_gmt":"2025-08-25T07:14:28","slug":"enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/","title":{"rendered":"ENHANCING  MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction : <\/strong><\/h2>\n\n\n\n<p>The <strong>MERN Stack<\/strong> is a popular technology stack for building full stack web applications. It includes React.js,Express.js and Node.js. React.js handles the FrontEnd, Node.js manages the backend, and MongoDB stores the data. While MERN provides a strong foundation, creating attractive and user-friendly interfaces requires UI Components. This is where MUI (Material -UI) comes in. MUI is a React Component Library that follows Google&#8217;s Material Design guideliness, offering prebuilt, customizable, and responsive UI components.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why We Use MUI in MERN Stack Applications?<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>PreBuilt Components : <\/strong> Save Development time by using ready- made buttons, forms, tables and dialogs.<\/li>\n\n\n\n<li><strong>Responsive Design : <\/strong> Components adjust automatically across devices.<\/li>\n\n\n\n<li><strong>Customizable Themes : <\/strong> Easily change colors, typography, and spacing.<\/li>\n\n\n\n<li><strong>Better User Experience : <\/strong> MUI ensures a polished and modern UI without designing from scratch.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Setting Up a MERN + MUI Applications <\/strong><\/h2>\n\n\n\n<p><strong>Initialize MERN Project:<\/strong><\/p>\n\n\n\n<p>BackEnd SetUp:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir mern-mui-app\ncd mern-mui-app\nmkdir server client\ncd server\nnpm init -y\nnpm install express mongoose cors dotenv\n\nServer\/Index.js:\n\nimport express from 'express';\nimport mongoose from 'mongoose';\nimport cors from 'cors';\nimport dotenv from 'dotenv';\n\ndotenv.config();\nconst app = express();\napp.use(cors());\napp.use(express.json());\n\nmongoose.connect(process.env.MONGO_URI, {\n    useNewUrlParser: true,\n    useUnifiedTopology: true\n})\n.then(() =&gt; console.log(\"MongoDB connected\"))\n.catch((err) =&gt; console.log(err));\n\napp.get('\/', (req, res) =&gt; {\n    res.send(\"Server is running\");\n});\n\napp.listen(5000, () =&gt; console.log(\"Server started on port 5000\"));<\/code><\/pre>\n\n\n\n<p><strong>SetUp React FrontEnd with MUI<\/strong>:<\/p>\n\n\n\n<p>FrontEnd SetUp:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>npx create-react-app client \ncd client \nnpm install @mui\/material @mui\/icons-material @emotion\/react @emotion\/styled axios\n<\/code><\/pre>\n\n\n\n<p><strong>Creating a Simple MUI Form:<\/strong><\/p>\n\n\n\n<p>We&#8217;ll create a User Registration Form Using <strong>TextField, Button <\/strong>and <strong> Stack <\/strong>componentsfrom MUI.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React, { useState } from 'react';\nimport { TextField, Button, Stack } from '@mui\/material';\nimport axios from 'axios';\n\nconst RegisterForm = () =&gt; {\n  const &#091;formData, setFormData] = useState({ name: '', email: '' });\n\n  const handleChange = (e) =&gt; {\n    setFormData({ ...formData, &#091;e.target.name]: e.target.value });\n  };\n\n  const handleSubmit = async (e) =&gt; {\n    e.preventDefault();\n    try {\n      const res = await axios.post('http:\/\/localhost:5000\/register', formData);\n      console.log('User Registered:', res.data);\n    } catch (err) {\n      console.error(err);\n    }\n  };\n\n  return (\n    &lt;form onSubmit={handleSubmit}&gt;\n      &lt;Stack spacing={2} width={400} margin=\"auto\" mt={5}&gt;\n        &lt;TextField\n          label=\"Name\"\n          name=\"name\"\n          value={formData.name}\n          onChange={handleChange}\n          variant=\"outlined\"\n          required\n        \/&gt;\n        &lt;TextField\n          label=\"Email\"\n          name=\"email\"\n          value={formData.email}\n          onChange={handleChange}\n          variant=\"outlined\"\n          required\n        \/&gt;\n        &lt;Button type=\"submit\" variant=\"contained\" color=\"primary\"&gt;\n          Register\n        &lt;\/Button&gt;\n      &lt;\/Stack&gt;\n    &lt;\/form&gt;\n  );\n};\n\nexport default RegisterForm;\n<\/code><\/pre>\n\n\n\n<p><strong>Using MUI Table to Display Data:<\/strong><\/p>\n\n\n\n<p>We can fetch users from the Backend and display them in a <strong>DataGrid.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React, { useEffect, useState } from 'react';\nimport { DataGrid } from '@mui\/x-data-grid';\nimport axios from 'axios';\n\nconst UserTable = () =&gt; {\n  const &#091;users, setUsers] = useState(&#091;]);\n\n  useEffect(() =&gt; {\n    const fetchUsers = async () =&gt; {\n      const res = await axios.get('http:\/\/localhost:5000\/users');\n      setUsers(res.data);\n    };\n    fetchUsers();\n  }, &#091;]);\n\n  const columns = &#091;\n    { field: '_id', headerName: 'ID', width: 220 },\n    { field: 'name', headerName: 'Name', width: 150 },\n    { field: 'email', headerName: 'Email', width: 200 }\n  ];\n\n  return (\n    &lt;div style={{ height: 400, width: '100%', marginTop: 20 }}&gt;\n      &lt;DataGrid rows={users} columns={columns} getRowId={(row) =&gt; row._id} \/&gt;\n    &lt;\/div&gt;\n  );\n};\n\nexport default UserTable;\n<\/code><\/pre>\n\n\n\n<p><strong>Integrating Form and Table in App.js:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React from 'react';\nimport RegisterForm from '.\/components\/RegisterForm';\nimport UserTable from '.\/components\/UserTable';\n\nfunction App() {\n  return (\n    &lt;div&gt;\n      &lt;h1 style={{ textAlign: 'center', marginTop: '20px' }}&gt;MERN + MUI Example&lt;\/h1&gt;\n      &lt;RegisterForm \/&gt;\n      &lt;UserTable \/&gt;\n    &lt;\/div&gt;\n  );\n}\n\nexport default App;\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways:<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>MUI Simplifies UI Development : <\/strong> PreBuilt component save development time.<\/li>\n\n\n\n<li><strong>Responsive and mordern design : <\/strong>MUI Components looks professional and they were out of the box.<\/li>\n\n\n\n<li><strong>Full MERN Stack Integration : <\/strong> MUI works seamlessly with React for FrontEnd interactions and BackEnd APIs.<\/li>\n\n\n\n<li><strong>Scalability : <\/strong>Easily extend the UI with advanced components like dialogs, tables and modals.<\/li>\n<\/ol>\n\n\n\n<p>By combining MERN and MUI, we can quickly build scalable Full-Stack Applications with Professional looking interfaces without spending weels on FrontEnd Design.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction : The MERN Stack is a popular technology stack for building full stack web applications. It includes React.js,Express.js and Node.js. React.js handles the FrontEnd, Node.js manages the backend, and MongoDB stores the data. While MERN provides a strong foundation, creating attractive and user-friendly interfaces requires UI Components. This is&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">ENHANCING  MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":524,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-9314","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction : The MERN Stack is a popular technology stack for building full stack web applications. It includes React.js,Express.js and Node.js. React.js handles the FrontEnd, Node.js manages the backend, and MongoDB stores the data. While MERN provides a strong foundation, creating attractive and user-friendly interfaces requires UI Components. This is&hellip; Continue Reading ENHANCING MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-25T07:12:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-25T07:14:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"swetha k\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"swetha k\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/\"},\"author\":{\"name\":\"swetha k\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/ddd9a75e771906e97f3b620018d5c14f\"},\"headline\":\"ENHANCING MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE\",\"datePublished\":\"2025-08-25T07:12:03+00:00\",\"dateModified\":\"2025-08-25T07:14:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/\"},\"wordCount\":280,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-08-25T07:12:03+00:00\",\"dateModified\":\"2025-08-25T07:14:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ENHANCING MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/ddd9a75e771906e97f3b620018d5c14f\",\"name\":\"swetha k\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/45b1e2da83b9729840c59aa38f148aeaddfdce43d29cf03c44a6482dbeb1734a?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/45b1e2da83b9729840c59aa38f148aeaddfdce43d29cf03c44a6482dbeb1734a?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/45b1e2da83b9729840c59aa38f148aeaddfdce43d29cf03c44a6482dbeb1734a?s=96&r=g\",\"caption\":\"swetha k\"},\"sameAs\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-admin\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/swetha\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction : The MERN Stack is a popular technology stack for building full stack web applications. It includes React.js,Express.js and Node.js. React.js handles the FrontEnd, Node.js manages the backend, and MongoDB stores the data. While MERN provides a strong foundation, creating attractive and user-friendly interfaces requires UI Components. This is&hellip; Continue Reading ENHANCING MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE","og_url":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-08-25T07:12:03+00:00","article_modified_time":"2025-08-25T07:14:28+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"swetha k","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"swetha k","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/"},"author":{"name":"swetha k","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/ddd9a75e771906e97f3b620018d5c14f"},"headline":"ENHANCING MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE","datePublished":"2025-08-25T07:12:03+00:00","dateModified":"2025-08-25T07:14:28+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/"},"wordCount":280,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/","url":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2025-08-25T07:12:03+00:00","dateModified":"2025-08-25T07:14:28+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/enhancing-mern-stack-applications-with-mui-components-a-beginners-practical-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"ENHANCING MERN STACK APPLICATIONS WITH MUI COMPONENTS : A BEGINNER&#8217;s PRACTICAL GUIDE"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/ddd9a75e771906e97f3b620018d5c14f","name":"swetha k","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/45b1e2da83b9729840c59aa38f148aeaddfdce43d29cf03c44a6482dbeb1734a?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/45b1e2da83b9729840c59aa38f148aeaddfdce43d29cf03c44a6482dbeb1734a?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/45b1e2da83b9729840c59aa38f148aeaddfdce43d29cf03c44a6482dbeb1734a?s=96&r=g","caption":"swetha k"},"sameAs":["https:\/\/pheonixsolutions.com\/blog\/wp-admin"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/swetha\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2qe","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9314","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/524"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=9314"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9314\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=9314"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=9314"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=9314"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}