Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Sentiment Analysis App</title> | |
<style> | |
body { font-family: Arial, sans-serif; text-align: center; padding: 20px; background-color: #f4f4f4; } | |
h1 { color: #FF4B4B; } | |
a { color: white; text-decoration: none; padding: 10px 20px; background-color: #FF4B4B; border-radius: 5px; } | |
</style> | |
</head> | |
<body> | |
<h1>Welcome to the Sentiment Analysis App 🚀</h1> | |
<p>This project analyzes text sentiment using a fine-tuned Transformer model.</p> | |
<a href="https://your-streamlit-app-link.streamlit.app" target="_blank">Try the App</a> | |
</body> | |
</html> | |