[251127] feat: Featured Brands - NBCU Series Card Images

🕐 커밋 시간: 2025. 11. 27. 10:53:45

📊 변경 통계:
  • 총 파일: 4개
  • 추가: +6줄
  • 삭제: -3줄

📁 추가된 파일:
  + com.twin.app.shoptime/assets/images/featuredBrands/series-card-1.png
  + com.twin.app.shoptime/assets/images/featuredBrands/series-card-2.png
  + com.twin.app.shoptime/assets/images/featuredBrands/series-card-3.png

📝 수정된 파일:
  ~ com.twin.app.shoptime/src/views/FeaturedBrandsPanel/NBCUContent/NBCUContent.jsx
This commit is contained in:
2025-11-27 10:53:46 +09:00
parent cfee554bf6
commit 9ff6064bc9
4 changed files with 6 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

View File

@@ -10,6 +10,9 @@ import { $L } from "../../../utils/helperMethods";
import css from "./NBCUContent.module.less";
import NBCUList from "./NBCUList/NBCUList";
import NBCUSeries from "./NBCUSeries/NBCUSeries";
import seriesCard1 from "../../../../assets/images/featuredBrands/series-card-1.png";
import seriesCard2 from "../../../../assets/images/featuredBrands/series-card-2.png";
import seriesCard3 from "../../../../assets/images/featuredBrands/series-card-3.png";
const STRING_CONF = {
NBCU: "NBCU",
@@ -21,7 +24,7 @@ const MOCK_BRAND_SERIES_GROUP_INFO = [
{
seriesId: "series-1",
seriesNm: "Drama Collection",
seriesImgUrl: "assets/images/img-thumb-empty-product@3x.png",
seriesImgUrl: seriesCard1,
patnrId: "nbcu-partner-1",
brandSeriesProductInfo: Array.from({ length: 6 }).map((_, i) => ({
productId: `drama-${i}`,
@@ -33,7 +36,7 @@ const MOCK_BRAND_SERIES_GROUP_INFO = [
{
seriesId: "series-2",
seriesNm: "Comedy Series",
seriesImgUrl: "assets/images/img-thumb-empty-product@3x.png",
seriesImgUrl: seriesCard2,
patnrId: "nbcu-partner-1",
brandSeriesProductInfo: Array.from({ length: 6 }).map((_, i) => ({
productId: `comedy-${i}`,
@@ -45,7 +48,7 @@ const MOCK_BRAND_SERIES_GROUP_INFO = [
{
seriesId: "series-3",
seriesNm: "Sci-Fi Originals",
seriesImgUrl: "assets/images/img-thumb-empty-product@3x.png",
seriesImgUrl: seriesCard3,
patnrId: "nbcu-partner-1",
brandSeriesProductInfo: Array.from({ length: 6 }).map((_, i) => ({
productId: `scifi-${i}`,