Team5599 / BNCHS-Sentinels-Website-v5

Website for the Benjamin N. Cardozo Robotics Team (FRC Team 5599 - The Sentinels) (v5.0 | COMING SOON).
https://beta.team5599.com/
0 stars 0 forks source link

Be smarter when using 'use client' #16

Open DeveloperBlue opened 11 months ago

DeveloperBlue commented 11 months ago

A lot of pages are using the 'use client' tag when they make fetch requests to the API. The whole point of NextJS is to do server-side rendering as much as possible.

Rather than applying 'use client' to the entire page, we should be separating out these client-sided components and only applying 'use client' to them.