import React from 'react'; import { Box, Typography, Paper, Chip } from '@mui/material'; import ThumbUpIcon from '@mui/icons-material/ThumbUp'; import ThumbDownIcon from '@mui/icons-material/ThumbDown'; import RemoveIcon from '@mui/icons-material/Remove'; import RateReviewIcon from '@mui/icons-material/RateReview'; import AutoAwesomeIcon from '@mui/icons-material/AutoAwesome'; function AboutSection() { return ( How It Works This tool uses artificial intelligence to analyze the sentiment of movie reviews. Simply enter or paste a movie review, and our AI will classify it as positive, negative, or neutral, along with a confidence score and detailed analysis. Enter Your Review Copy and paste a movie review or write your own in the text area. AI Analysis Our AI model analyzes the text to determine the sentiment and confidence level. } label="Positive" size="small" sx={{ bgcolor: 'success.main', color: 'white' }} /> } label="Negative" size="small" sx={{ bgcolor: 'secondary.main', color: 'white' }} /> } label="Neutral" size="small" sx={{ bgcolor: 'warning.main', color: 'white' }} /> View Results See the sentiment classification, confidence score, and detailed reasoning. This application uses Cohere's large language model API to perform sentiment analysis. ); } export default AboutSection;