File tree Expand file tree Collapse file tree 8 files changed +47
-7
lines changed
Expand file tree Collapse file tree 8 files changed +47
-7
lines changed Original file line number Diff line number Diff line change 22< html lang ="en ">
33 < head >
44 < meta charset ="UTF-8 " />
5- < link rel ="icon " type ="image/svg+xml " href ="/vite.svg " />
5+ < link
6+ rel ="icon "
7+ type ="image/svg+xml "
8+ href ="./public/chippi_extension_popup.svg "
9+ />
610 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
711 < title > Pinback</ title >
812 </ head >
Original file line number Diff line number Diff line change 22< html lang ="en ">
33 < head >
44 < meta charset ="UTF-8 " />
5- < link rel ="icon " type ="image/svg+xml " href ="/vite.svg " />
5+ < link
6+ rel ="icon "
7+ type ="image/svg+xml "
8+ href ="./public/chippi_extension_popup.svg "
9+ />
610 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7- < title > Vite + React + TS </ title >
11+ < title > Pinback </ title >
812 </ head >
913 < body >
1014 < div id ="root "> </ div >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,11 +5,12 @@ import FeatureBookmarkSection from './components/FeatureBookmarkSection';
55import FeatureReminderSection from './components/FeatureReminderSection' ;
66import FeatureRewardSection from './components/FeatureRewardSection' ;
77import FinalCTASection from './components/FinalCTASection' ;
8+ import Header from './components/Header' ;
89
910function App ( ) {
1011 return (
1112 < div className = "h-dvh snap-y snap-mandatory overflow-y-scroll scroll-smooth" >
12- { /* <Header /> */ }
13+ < Header />
1314
1415 { /* 각 섹션들 */ }
1516 < section className = "h-dvh snap-start" >
Original file line number Diff line number Diff line change 1+ import { Icon } from '@pinback/design-system/icons' ;
2+ import { Button } from '@pinback/design-system/ui' ;
3+
4+ const Header = ( ) => {
5+ return (
6+ < header className = "fixed left-0 right-0 top-0 z-50 flex h-[7.4rem] w-full items-center justify-between px-[8rem]" >
7+ < Icon name = { 'logo' } width = { 87 } height = { 24 } />
8+ < div >
9+ { /*TODO: onClick 추가 */ }
10+ < Button > 다운로드</ Button >
11+ </ div >
12+ </ header >
13+ ) ;
14+ } ;
15+ export default Header ;
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ const HeroSection = () => {
2727
2828 return (
2929 < section className = "bg-white-bg flex h-dvh w-full flex-col items-center justify-center px-[17.2rem] text-center" >
30- { /* 텍스트 오버레이 */ }
3130 < div className = "flex flex-col items-center justify-center" >
3231 < div className = "flex flex-row flex-nowrap items-end justify-center gap-[3rem]" >
3332 < img src = { landing_icon } alt = "Landing Icon" />
@@ -56,7 +55,7 @@ const HeroSection = () => {
5655 ?. scrollIntoView ( { behavior : 'smooth' } ) ;
5756 } }
5857 >
59- 스트롤하기
58+ 스크롤하기
6059 </ Button >
6160 </ div >
6261 </ div >
You can’t perform that action at this time.
0 commit comments