Overview This project demonstrates authentication, SSR, and API routes. Code Snippet 1export async function getUser() { 2 const res = await fetch("/api/user"); 3 return res.json(); 4}