Skip to content

Commit 72ed6bc

Browse files
authored
Feat: 개발 QA 1차(정민 | 랜딩페이지 디테일 수정) (#123)
* feat: 오타 수정 * feat: 헤더 추가 * feat: 메타데이터 수정 * feat: 파비콘 변경
1 parent 4f676bb commit 72ed6bc

File tree

8 files changed

+47
-7
lines changed

8 files changed

+47
-7
lines changed

apps/client/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
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>

apps/client/public/chippi_extension_popup.svg

Lines changed: 9 additions & 0 deletions
Loading

apps/landing/index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
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>

apps/landing/public/chippi_extension_popup.svg

Lines changed: 9 additions & 0 deletions
Loading

apps/landing/public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/landing/src/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ import FeatureBookmarkSection from './components/FeatureBookmarkSection';
55
import FeatureReminderSection from './components/FeatureReminderSection';
66
import FeatureRewardSection from './components/FeatureRewardSection';
77
import FinalCTASection from './components/FinalCTASection';
8+
import Header from './components/Header';
89

910
function 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">
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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;

apps/landing/src/components/HeroSection.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)