edugator-cise / edugator-staff-frontend

React, TypeScript, MUI front end for Edugator
https://edugator.app
GNU General Public License v3.0
7 stars 4 forks source link

Refactor project styling to use TailwindCSS #205

Open digitdustin opened 1 year ago

digitdustin commented 1 year ago

Upgrade styling to use TailwindCSS instead of MUI to:

marcgabe15 commented 1 year ago

Note: NextJS13 app directory uses server components by default and if we want client components (which our app needs) we'll need to put "use client" on every single file. Our current app right now is hosted just a static files hosted over a cdn so by default we still can't use app directory unless we want to move towards running this on an actual server. Next.js is tightly coupled with Vercel's system so its super opinionated on using SSR.

Some things to think about:

Some advantages I can think of right now:

Disadvantages: