설치

npx create-next-app@latest
would you like to customize the default import alias? yes // 절대 경로 설
what import alias would you like configured? @/* // 절대 경로 설정
"use client";
/** @jsxImportSource @emotion/react */

import Link from "next/link";

const WorkspaceUserProfile = () => {
  return <div></div>;
};

export default WorkspaceUserProfile;

화면 넘어감 방지

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}