Skip to content

Commit

Permalink
feat: mypage Nav바 등록
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed May 28, 2024
1 parent 4d07ff3 commit 16a88f0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Footer = () => {

return (
<footer>
<nav className=" fixed bottom-0 w-[393px] h-[77.02px] px-[25px] bg-white border-t border-stone-50 justify-between items-center inline-flex z-[999]">
<nav className=" fixed bottom-0 w-[393px] h-[77.02px] px-[25px] bg-white border-t border-stone-50 justify-between items-center inline-flex z-[999]">
<Link href="/">
<div className="h-[44.84px] flex-col justify-start items-center gap-2.5 inline-flex">
<div className="w-[22.06px] h-[21.82px] flex-col justify-center items-center">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/mypage/guide/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from 'react';
const GuidePage = () => {
return (
<div className="w-full max-w-md mx-auto bg-white flex flex-col gap-8">
<div className="mt-[40px] ml-[10px] mb-[2px]">
<div className=" mt-[40px] ml-[20px] mb-[2px]">
<BackArrow width="40px" height="24px" name="이용 가이드" />
</div>

Expand Down
7 changes: 5 additions & 2 deletions src/pages/mypage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import LogoutModal from '@/components/modal/logoutModal';
import { useState } from 'react';
import useLoggedOut from '@/hook/useLoggedOut';
import SuccessModal from '@/components/modal/successModal';
import Footer from '@/components/footer/Footer';

const MyPage = () => {
const member = useMember();
const job = getTitleFromDescription(jobPosition, member.memberJob);
Expand All @@ -25,8 +27,9 @@ const MyPage = () => {
};

return (
<div className="w-full flex items-center justify-center">
<div className="w-full max-w-md flex flex-col items-center justify-center mt-[102px]">
<div className=" max-w-[393px] mx-auto relative">
<Footer />
<div className="w-full max-w-md flex flex-col items-center justify-center mt-[102px] relative">
<div className="flex flex-col justify-center items-center">
<div>
<img src="/mypage/ProfileImage.svg" />
Expand Down

0 comments on commit 16a88f0

Please sign in to comment.