Last active
July 14, 2025 12:50
-
-
Save kms0219kms/cd416d2f937837fdc38b0dce66848fe8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // 이 페이지 팝업으로 열 때 | |
| // "width=831, height=1754, top=100, fullscreen=no, menubar=no, status=no, toolbar=no, titlebar=yes, location=no, scrollbar=no" | |
| // [Toss Payments] 2025-04부터는 (신)상점관리자 창으로 REDIRECT | |
| import { redirect } from "next/navigation" | |
| export default async function TossPaymentsFreeInstallment() { | |
| return redirect( | |
| "https://consumer.tosspayments.com/notice/free-installment", | |
| ) | |
| } | |
| // ------------------------------------------------------------------- | |
| /* | |
| [Toss Payments] 2025-04부터 (구)상점관리자 종료 준비를 위해 이미지 갱신 중단 | |
| 아래 코드는 백업용으로 보관 (사용하지 않음) | |
| export default function UplusFreeInstallment() { | |
| // [이미지 출처] https://pgweb.uplus.co.kr/LGUplus/MainPopUp.do | |
| // [Toss Payments] 도메인 변경에 따른 반영 : https://pgweb.tosspayments.com/tosspayments/MainPopUp.do | |
| const PGWEB_BASE_URL = "https://pgweb.tosspayments.com" | |
| return ( | |
| <main className="absolute left-0 top-0 z-[9999] h-dvh w-dvw bg-white"> | |
| <img | |
| src={`${PGWEB_BASE_URL}/resource/mertadmin/banner/main_banner_PopUp.png`} | |
| alt="무이자할부 행사안내" | |
| className="w-full" | |
| /> | |
| </main> | |
| ) | |
| } | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment