mirror of https://github.com/kortix-ai/suna.git
82 lines
2.5 KiB
HTML
82 lines
2.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Test Page</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||
|
line-height: 1.6;
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
color: #1f2937;
|
||
|
}
|
||
|
h1 {
|
||
|
color: #4f46e5;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
.success {
|
||
|
color: #10b981;
|
||
|
font-weight: bold;
|
||
|
padding: 10px;
|
||
|
background-color: rgba(16, 185, 129, 0.1);
|
||
|
border-radius: 8px;
|
||
|
margin: 20px 0;
|
||
|
}
|
||
|
.button {
|
||
|
display: inline-block;
|
||
|
background-color: #4f46e5;
|
||
|
color: white;
|
||
|
padding: 12px 24px;
|
||
|
text-decoration: none;
|
||
|
border-radius: 8px;
|
||
|
margin-top: 20px;
|
||
|
font-weight: 600;
|
||
|
transition: all 0.3s ease;
|
||
|
}
|
||
|
.button:hover {
|
||
|
background-color: #4338ca;
|
||
|
transform: translateY(-2px);
|
||
|
}
|
||
|
.file-list {
|
||
|
background-color: #f8fafc;
|
||
|
padding: 20px;
|
||
|
border-radius: 8px;
|
||
|
margin: 20px 0;
|
||
|
}
|
||
|
.file-list li {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
.file-list strong {
|
||
|
color: #4f46e5;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Web Application Test Page</h1>
|
||
|
<p class="success">✅ Success! All files have been created successfully.</p>
|
||
|
|
||
|
<p>The web application includes a modern, responsive landing page with the following features:</p>
|
||
|
|
||
|
<ul>
|
||
|
<li>Responsive design that works on all devices</li>
|
||
|
<li>Modern UI with smooth animations</li>
|
||
|
<li>Mobile-friendly navigation with hamburger menu</li>
|
||
|
<li>Form validation for the contact form</li>
|
||
|
<li>Scroll animations using Intersection Observer API</li>
|
||
|
</ul>
|
||
|
|
||
|
<div class="file-list">
|
||
|
<h2>Files in the workspace:</h2>
|
||
|
<ul>
|
||
|
<li><strong>index.html</strong> - Main HTML structure (11,782 bytes)</li>
|
||
|
<li><strong>styles.css</strong> - CSS styling (10,101 bytes)</li>
|
||
|
<li><strong>script.js</strong> - JavaScript functionality (7,961 bytes)</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<a href="index.html" class="button">View Web Application</a>
|
||
|
</body>
|
||
|
</html>
|