|  |  |  | 
|---|
|  |  |  | const [isClient, setIsClient] = useState(false); | 
|---|
|  |  |  | const [hasError, setHasError] = useState(false); | 
|---|
|  |  |  | const pathname = usePathname(); | 
|---|
|  |  |  | const isLoginPage = pathname === '/login'; | 
|---|
|  |  |  | const isRegisterPage = pathname === '/register'; | 
|---|
|  |  |  | const isHomePage = pathname === '/'; | 
|---|
|  |  |  | const isAIScenePage = pathname.startsWith('/ai-scene'); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | useEffect(() => { | 
|---|
|  |  |  | setIsClient(true); | 
|---|
|  |  |  | }, []); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 判断当前页面 | 
|---|
|  |  |  | const isLoginPage = pathname === '/login'; | 
|---|
|  |  |  | const isRegisterPage = pathname === '/register'; | 
|---|
|  |  |  | const isHomePage = pathname === '/'; | 
|---|
|  |  |  | const isAIScenePage = pathname === '/ai-scene'; | 
|---|
|  |  |  | const isAISceneChatPage = pathname.startsWith('/ai-scene/chat'); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 添加错误捕获 | 
|---|
|  |  |  | useEffect(() => { | 
|---|
|  |  |  | 
|---|
|  |  |  | <main className={`flex-1 ${isHomePage || isAIScenePage ? '' : 'bg-gradient-to-b from-[var(--ai-surface)] to-white'} pt-0 mt-0`}> | 
|---|
|  |  |  | {children} | 
|---|
|  |  |  | </main> | 
|---|
|  |  |  | {!isLoginPage && !isRegisterPage && ( | 
|---|
|  |  |  | {!isLoginPage && !isRegisterPage && !isAISceneChatPage && ( | 
|---|
|  |  |  | <footer className="relative z-20 bg-gradient-to-br from-[#0A1033] via-[#1E2B63] to-[#131C41] text-white py-10 overflow-hidden"> | 
|---|
|  |  |  | {/* 科技感动态背景元素 */} | 
|---|
|  |  |  | <div className="absolute inset-0 overflow-hidden pointer-events-none"> | 
|---|
|  |  |  | 
|---|
|  |  |  | <span className="inline-block w-2 h-2 bg-[#FF6A88] rounded-full ml-3 animate-pulse" style={{animationDelay: '0.6s'}}></span> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <p className="text-sm text-gray-400">© 2024 帷幄君成. All rights reserved.</p> | 
|---|
|  |  |  | <p className="text-sm text-gray-400">© 2025 帷幄君成. All rights reserved.</p> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </footer> | 
|---|