live-watch—dev lesson notes

  • add repo license in git terminal
  • center vert & hor
        <main className="flex flex-col h-screen items-center">
        <div className="flex flex-col my-auto">
          <div className="flex">
            {/* <VideoBox/> */}
            video-box
          </div>
          <div className="flex">
            {/* <CommentBox/> */}
            comment-box
          </div>
        </div>
      </main>
    
  • using cdn fonts on nextjs
  • in what folder should font asset best be in nextjs?
    • public?
  • what is the display key in the LocalFont function for?
    const cmufont = localFont({
      src: '../public/cmunbmr-webfont.woff',
      display: 'swap',
    })
    

Backlinks