• Next.js이 제공하는 모달 구현 방법Next.js는 Intercepting Routes와 Parallel Routes라는 두 가지 기능을 통해 손쉽게 모달을 구현할 수 있게 해 줍니다. File-system conventions: Intercepting Routes | Next.jsUse intercepting routes to load a new route within the current layout while masking the browser URL, useful for advanced routing patterns such as modals.nextjs.org 이 두 기능으로 어떻게 모달을 구현할 수 있는지 간략하게 설명한다면 다음과 같습니다. Parallel Routes(패러..