하단 배너

This commit is contained in:
focp212@naver.com
2025-10-29 14:28:47 +09:00
parent 88445ec607
commit c82f37fbb5
6 changed files with 167 additions and 21 deletions

View File

@@ -6,6 +6,7 @@ import {
export interface HomeBottomBannerProps {
setBottomBannerOn: (bottomBannerOn: boolean) => void;
bottomBannerOn: boolean;
bannerList: Array<BannerList>;
};
export interface AuthRegisterProps {
setAuthRegisterOn: (authRegisterOn: boolean) => void;
@@ -79,14 +80,20 @@ export interface HomeGroupsParams {
export interface HomeGroupsResponse {
mids: Array<string>;
};
export interface HomeBannerListParams {};
export enum BannerType {
MAIN = 'MAIN',
BOTTOM = 'BOTTOM'
};
export interface HomeBannerListParams {
bannerType: BannerType;
};
export interface HomeBannerListResponse {
bannerList: Array<BannerList>
};
export interface BannerList {
bannerId: number;
title: string;
imageUrl: string;
linkUrl: string;
priority: number;
title?: string;
imageUrl?: string;
linkUrl?: string;
order?: number;
};