Skip to content

Commit e1edf3c

Browse files
committed
feat: 앱스토어 링크 추가
1 parent 579ec6c commit e1edf3c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

apps/tuk-landing/src/app/(home)/src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const Footer = () => {
5050

5151
<div className="flex gap-3 max-[880px]:hidden">
5252
<Link
53-
href="/"
53+
href="https://apps.apple.com/kr/app/%ED%88%AD-%EB%A7%8C%EB%82%A8%EC%9D%84-%EB%84%8C%EC%A7%80%EC%8B%9C/id6749781762"
5454
className="flex h-[3.625rem] w-[10.75rem] cursor-pointer items-center justify-center gap-2 rounded-xl border-[1.5px] border-white-default/20 bg-black-default/30 text-sm font-bold text-white-default"
5555
>
5656
<Image src="/app-store.webp" alt="appStoreImg" width={24} height={24} />

apps/tuk-landing/src/app/(home)/src/components/MainSection.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ const MainSection = () => {
2121
if (isAndroid) {
2222
window.location.href = 'https://play.google.com/store/apps/details?id=com.plottwist.tuk';
2323
} else {
24-
window.location.href = 'https://tuk.kr';
24+
window.location.href =
25+
'https://apps.apple.com/kr/app/%ED%88%AD-%EB%A7%8C%EB%82%A8%EC%9D%84-%EB%84%8C%EC%A7%80%EC%8B%9C/id6749781762';
2526
}
2627
};
2728

@@ -66,7 +67,7 @@ const MainSection = () => {
6667
>
6768
<div className="flex gap-3 max-[880px]:hidden">
6869
<Link
69-
href="#"
70+
href="https://apps.apple.com/kr/app/%ED%88%AD-%EB%A7%8C%EB%82%A8%EC%9D%84-%EB%84%8C%EC%A7%80%EC%8B%9C/id6749781762"
7071
className="flex h-[3.625rem] w-[10.75rem] cursor-pointer items-center justify-center gap-2 rounded-xl border-[1.5px] border-white-default/20 bg-black-default/30 text-sm font-bold text-white-default"
7172
>
7273
<Image src="/app-store.webp" alt="App Store" width={24} height={24} priority />

0 commit comments

Comments
 (0)