-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ohofront
committed
Feb 24, 2025
1 parent
f5a1b04
commit f42875e
Showing
4 changed files
with
66 additions
and
13 deletions.
There are no files selected for viewing
Binary file not shown.
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,55 @@ | ||
import styled from "styled-components"; | ||
|
||
const Banner = () => { | ||
return ( | ||
<BannerWrapper> | ||
<TextContainer> | ||
<p> | ||
<HighlightText>겜구 커뮤니티에 오신 것을 환영해요 🎉</HighlightText> | ||
</p> | ||
<Description>게임 친구를 쉽고 빠르게 구해줄게요!</Description> | ||
</TextContainer> | ||
<Logo>GAMGOO</Logo> | ||
</BannerWrapper> | ||
); | ||
}; | ||
|
||
export default Banner; | ||
|
||
const BannerWrapper = styled.div` | ||
width: 100%; | ||
height: 128px; | ||
background: #f0f0fc; | ||
border-radius: 20px; | ||
display: flex; | ||
align-items: center; | ||
padding: 40px; | ||
position: relative; | ||
margin-bottom: 32px; | ||
`; | ||
|
||
const TextContainer = styled.div` | ||
flex: 1; | ||
`; | ||
|
||
const HighlightText = styled.span` | ||
color: #8a63d2; | ||
font-weight: bold; | ||
`; | ||
|
||
const Description = styled.p` | ||
margin: 0; | ||
font-size: 16px; | ||
color: #333; | ||
`; | ||
|
||
const Logo = styled.div` | ||
font-size: 72px; | ||
font-weight: bold; | ||
font-family: "TimeForSalad", sans-serif; | ||
color: #c1b7ff; | ||
opacity: 0.3; | ||
position: absolute; | ||
right: 20px; | ||
letter-spacing: 5px; | ||
`; |
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