Skip to content

Commit

Permalink
Merge pull request #53 from YAPP-Github/feature/FE-036
Browse files Browse the repository at this point in the history
Feature/fe-036 : 메인페이지 수정사항
  • Loading branch information
naro-Kim authored Jun 30, 2023
2 parents 1421c3a + 6820309 commit e535d8c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/home/components/HeroSection/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const HeroSection = () => {
가볍게 대화해보세요!
</Typography>

<Link href="/">
<Link href={'/write'}>
<Button color="primary" className={button}>
<Typography color="white" variant="title2">
우리 회사 먹팟 만들기
Expand Down
13 changes: 8 additions & 5 deletions src/components/Header/LoginActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
} from '@/components';
import { type Profile as ProfileData } from '@/types/data';
import { dropdownToggle } from './Header.css';
import Link from 'next/link';

interface Props {
profile: ProfileData;
Expand All @@ -18,11 +19,13 @@ interface Props {
const LoginActions = ({ profile }: Props) => {
return (
<>
<Button color="explain" size="micro">
<Typography variant="label3" color="white">
먹팟 만들기
</Typography>
</Button>
<Link href={'/write'}>
<Button color="explain" size="micro">
<Typography variant="label3" color="white">
먹팟 만들기
</Typography>
</Button>
</Link>
<Dropdown>
<DropdownToggle className={dropdownToggle}>
<Profile uid={profile.userId} nickname={profile.nickName} size="medium" fontSize="large" />
Expand Down

0 comments on commit e535d8c

Please sign in to comment.