-
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
1 parent
a80ff42
commit 1d34781
Showing
3 changed files
with
39 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
"use client"; | ||
|
||
import { useAppDownloadModalStore } from "./app-download-modal"; | ||
import { Close, Logo } from "./ui/icons"; | ||
|
||
const AppDownloadHeader = () => { | ||
const { open } = useAppDownloadModalStore(); | ||
|
||
return ( | ||
<div className="flex justify-between items-center bg-[#2C2C2C] px-[20px] py-[15px]"> | ||
<div className="flex justify-center items-center gap-[12px]"> | ||
<Close width={20} height={20} /> | ||
<Logo /> | ||
<div className="flex flex-col justify-center items-start"> | ||
<span className="text-[#ffffff] text-[16px] font-bold leading-[20px]"> | ||
매일글귀 | ||
</span> | ||
<span className="text-[#ffffff] text-[14px] font-medium leading-[20px]"> | ||
나를 위한 명언과 글귀 | ||
</span> | ||
</div> | ||
</div> | ||
<button | ||
type="button" | ||
className="bg-[#00B998] px-[16px] py-[8px] rounded-[8px]" | ||
onClick={open} | ||
> | ||
<span className="text-[#ffffff] text-[16px] font-medium leading-[24px] text-center"> | ||
다운로드 | ||
</span> | ||
</button> | ||
</div> | ||
); | ||
}; | ||
|
||
export default AppDownloadHeader; |
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