-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/prgrms-fe-devcourse/FEDC4_N…
…IRVANA_Gidong into feat/profile/followButton
- Loading branch information
Showing
25 changed files
with
433 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Link } from '@components/Link'; | ||
import { Button } from '@components/Button'; | ||
import { LandingMain } from '@pages/landing/Landing.style'; | ||
import { | ||
StyledAlertBackground, | ||
IconContainer, | ||
ContentContainer, | ||
NavButtonContainer | ||
} from '@components/Alert/Alert.style'; | ||
|
||
const NotFound = () => { | ||
return ( | ||
<LandingMain> | ||
<StyledAlertBackground | ||
width={330} | ||
height={390}> | ||
<IconContainer emojiSize={80}>{'😢'}</IconContainer> | ||
<ContentContainer contentFontSize={16}> | ||
{'404! 잘못된 페이지 접근이에요!'} | ||
<NavButtonContainer> | ||
<Link pageLink={'/'}> | ||
<Button | ||
width={300} | ||
height={50} | ||
dark={true} | ||
bold={true} | ||
label={'메인화면으로 이동하기'} | ||
/> | ||
</Link> | ||
</NavButtonContainer> | ||
</ContentContainer> | ||
</StyledAlertBackground> | ||
</LandingMain> | ||
); | ||
}; | ||
|
||
export default NotFound; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import NotFound from './NotFound'; | ||
|
||
export default NotFound; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.