貼一些讀文件的備註心得。
Rendering: Server Components | Next.js
Data Fetching: Server Components allow you to move data fetching to the server, closer to your data source. This can improve performance by reducing time it takes to fetch data needed for rendering, and the number of requests the client needs to make.
要跟DB要資料…當然是離DB越近越好⊙o⊙
Security: Server Components allow you to keep sensitive data and logic on the server, such as tokens and API keys, without the risk of exposing them to the client.
就像是保險箱一樣…機密的資料放在server更好。