diff --git a/component/form/UserInfoForm.tsx b/component/form/UserInfoForm.tsx index b30efa9..d2c50df 100644 --- a/component/form/UserInfoForm.tsx +++ b/component/form/UserInfoForm.tsx @@ -53,8 +53,6 @@ interface UserInfoFormPropsType { } const UserInfoForm = ({ setFunnel, setProgress }: UserInfoFormPropsType) => { - const params = useParams(); - const options = ["남성", "여성"]; const { getRootProps, getRadioProps } = useRadioGroup({ diff --git a/next.config.js b/next.config.js index 767719f..9ae8abf 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + images: { + domains: ["images.pexels.com"], + }, +}; -module.exports = nextConfig +module.exports = nextConfig; diff --git a/src/app/ChakraLayout.tsx b/src/app/ChakraLayout.tsx index 5a97300..21a3fc0 100644 --- a/src/app/ChakraLayout.tsx +++ b/src/app/ChakraLayout.tsx @@ -7,7 +7,6 @@ import dynamic from "next/dynamic"; const ChakraProvider = dynamic(() => import("@chakra-ui/provider").then((mod) => mod.ChakraProvider) ); -import localFont from "next/font/local"; // const BMJUA = localFont({ // src: [ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 028b707..78fd14b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,7 +13,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - +