fix. 임시 페이지 제작

This commit is contained in:
clkim
2025-09-11 18:02:43 +09:00
parent 1fb19f4f02
commit be15192e59
10 changed files with 161 additions and 113 deletions

View File

@@ -1,17 +0,0 @@
export type ImageType = "image" | "bg";
export interface ResponsiveImagePath {
path_mo?: string;
path_pc?: string;
}
export type ResponsiveImageResult =
| {
mobileSrc: string;
pcSrc: string;
}
| {
"--pc-bg": string;
"--mobile-bg": string;
}
| null;