Skip to content

Commit

Permalink
๐Ÿ’„ style : ๋ฉ”๋‰ดํŽ˜์ด์ง€์— ๋กœ๊ทธ์ธ ์„น์…˜ & ๋กœ๊ทธ์ธ ์„น์…˜ ๋””์ž์ธ
Browse files Browse the repository at this point in the history
  • Loading branch information
seondal committed Feb 19, 2024
1 parent 62aeaf5 commit 0f00eff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/app/(Main)/mypose/components/LoginSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export default function LoginSection() {
<DefaultProfile />
<div className="text-start">
<div id="subtitle-1">ํšŒ์›๊ฐ€์ž… / ๋กœ๊ทธ์ธ</div>
<div id="subtitle-2">๊ฐ„ํŽธ ๋กœ๊ทธ์ธ์œผ๋กœ 3์ดˆ๋งŒ์— ๊ฐ€์ž…ํ•  ์ˆ˜ ์žˆ์–ด์š”.</div>
<div id="subtitle-3" className="text-tertiary">
๊ฐ„ํŽธ ๋กœ๊ทธ์ธ์œผ๋กœ 3์ดˆ๋งŒ์— ๊ฐ€์ž…ํ•  ์ˆ˜ ์žˆ์–ด์š”.
</div>
</div>
</button>
</section>
Expand Down
8 changes: 6 additions & 2 deletions src/app/(Main)/mypose/components/MyposeTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ interface TabItemI {
const TabItem = ({ title, path, current }: TabItemI) =>
current ? (
<Link href={path} className="flex flex-1 items-center justify-center rounded-8 bg-white">
<span className="text-main-violet">{title}</span>
<div id="subtitle-1" className="text-main-violet">
{title}
</div>
</Link>
) : (
<Link href={path} className="flex flex-1 items-center justify-center rounded-8">
<span className="text-tertiary">{title}</span>
<div id="subtitle-1" className="text-tertiary">
{title}
</div>
</Link>
);

Expand Down
2 changes: 2 additions & 0 deletions src/app/(Sub)/menu/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import MenuListSection from './components/MenuListSection';
import LoginSection from '@/app/(Main)/mypose/components/LoginSection';
import { MenuHeader } from '@/components/Header';

export default function MenuPage() {
return (
<div className="px-20">
<MenuHeader />
<LoginSection />
<MenuListSection />
</div>
);
Expand Down

0 comments on commit 0f00eff

Please sign in to comment.