diff --git a/app/components/deepfield/HeroField.tsx b/app/components/deepfield/HeroField.tsx deleted file mode 100644 index 5e9e045..0000000 --- a/app/components/deepfield/HeroField.tsx +++ /dev/null @@ -1,330 +0,0 @@ -'use client'; - -import { useEffect, useRef, useState } from 'react'; -// 타입만 정적 import — 번들에 코드가 들어가지 않음 (import type) -import type * as THREE from 'three'; - -import { useFieldMode } from './useFieldMode'; - -interface Props { - className?: string; -} - -/** - * 정적 2광원 radial 그래디언트. - * static 모드 단독 비주얼이자, full/lite에서 캔버스 아래에 항상 깔리는 베이스. - * (WebGL 로딩 전/실패 시에도 비주얼 공백 없음) - */ -function StaticField() { - return ( -