import { staticAsset } from "@/utils/staticAsset"; export const LOCAL_GALLERY_IMAGES = [ staticAsset("photo-xiannairi-xuefeng.png"), staticAsset("photo-sangdui-caoyuan.png"), staticAsset("home-top-banner-2.png"), staticAsset("home-top-banner-3.png"), staticAsset("user-center-header.png"), staticAsset("home-top-banner.png"), staticAsset("chapter1-banner.png"), ] as const; export function localGalleryByIndex(index: number): string { const list = LOCAL_GALLERY_IMAGES; return list[((index % list.length) + list.length) % list.length]; }