Commit ed7a837a authored by Jiwon Yoon's avatar Jiwon Yoon
Browse files

home화면 create버튼 수정

parent a93cf3d9
......@@ -9,12 +9,12 @@ export const Home = () => {
가장 쉽게 설문지를 만드세요!
</div>
<Link
to={"/surveys"}
className="flex justify-center items-center my-6 h-12 w-28 border-2 font-bold text-black hover:text-white bg-gray-200 hover:bg-themeColor text-xl rounded-lg"
to={"/surveys/create"}
className="flex justify-center items-center my-6 h-14 w-48 border-2 font-bold hover:text-white bg-gray-200 hover:bg-themeColor text-black text-xl font-bold rounded-lg"
>
+
+ Create
</Link>
<p className="text-center text-xl text-black mb-3">Create now!</p>
{/* <p className="text-center justify-end text- mb-3">Create Now</p> */}
<div className="flex mt-5 md:px-48 bg-themeColor">
<img src={homeImg} className="m-3" />
</div>
......
......@@ -74,7 +74,7 @@ export const ModifySurvey = ({ surveyData, callApi }: Props) => {
setLoading(true);
const result = await callApi(survey);
console.log("result:", result);
navigate(-1);
navigate("/surveys");
} catch (error) {
setLoading(false);
catchErrors(error, setError);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment