Skip to content

Commit 23c5999

Browse files
committed
feat: oneStore 링크 버튼 구현
1 parent 1c751b4 commit 23c5999

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

components/project/ProjectContent/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function ProjectContent({ project }: Props): ReactElement {
1212
const {
1313
deployLink,
1414
playStoreLink,
15+
oneStoreLink,
1516
webLink,
1617
linkTreeLink,
1718
description,
@@ -84,6 +85,12 @@ function ProjectContent({ project }: Props): ReactElement {
8485
<DeployLinkButton target="_blank">Play Store</DeployLinkButton>
8586
</Link>
8687
)}
88+
{/* One Store 링크 */}
89+
{oneStoreLink && (
90+
<Link href={oneStoreLink} passHref>
91+
<DeployLinkButton target="_blank">One Store</DeployLinkButton>
92+
</Link>
93+
)}
8794
</DeployBox>
8895
</Container>
8996
);

types/project.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export interface Project {
2020
deployLink?: string | null;
2121
playStoreLink?: string;
2222
linkTreeLink?: string;
23+
oneStoreLink?: string;
2324
webLink?: string;
2425
description: string;
2526
}

0 commit comments

Comments
 (0)