import React, { useState } from 'react'; import './index.css'; import { HistoricalAnalytics } from './components/HistoricalAnalytics.jsx'; import { MaterialPredictor } from './components/MaterialPredictor.jsx'; import { ChatBot } from './components/ChatBot.jsx'; import logo from '../Assets/g.png'; import thumpVideo from '../Assets/Gorilla_Chest_Thumping_Animation_Generated.mp4'; function App() { const [activeTab, setActiveTab] = useState('waste'); const [showChat, setShowChat] = useState(false); const [showVideo, setShowVideo] = useState(false); const handleGorillaClick = () => { setShowVideo(true); setShowChat(false); }; return ( <>