7/6/25

Intro

Time to modernize the layout by migrating from global CSS to Material UI’s styling system, improving maintainability and theme consistency.

Material UI by OC Robotics

Create new branch and install MUI

  • Create branch
git checkout -b webdev103
  • Install dependencies
npm install @mui/material @emotion/react @emotion/styled

Refactor to MUI styling

  • Clear index.css except for background color
  • Rewrite App.jsx using MUI’s component library and sx styling
  • Commit and push changes to webdev103 branch
git push origin webdev103
  • The deployment should be triggered automatically, example:

Related