suna/agentpress/examples/example_agent/workspace/index.html

89 lines
3.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Landing Page</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<div class="logo">Brand</div>
<div class="menu-toggle" aria-label="Toggle mobile menu">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-menu">
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="hero">
<div class="hero-content">
<h1>Welcome to Our Platform</h1>
<p>Simplify your workflow with our innovative solution</p>
<a href="#" class="cta-button">Get Started</a>
</div>
</section>
<section id="features" class="features">
<div class="feature-grid">
<div class="feature">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" class="feature-icon">
<path d="M12 3v1m0 16v1m9-9h-1M4 12H3m3.343-5.657L5.929 5.929m12.728 12.728 1.414 1.414M6.343 5.657 4.929 4.243m12.728 12.728 1.414-1.414"/>
<circle cx="12" cy="12" r="4"/>
</svg>
<h3>Efficiency</h3>
<p>Streamline your process with our first key feature</p>
</div>
<div class="feature">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" class="feature-icon">
<path d="M20 7l-8-4-8 4m16 0-8 4m8-4v10l-8 4m0-10L4 7m8 4v10m0-10l8-4"/>
<circle cx="12" cy="12" r="3"/>
</svg>
<h3>Scalability</h3>
<p>Enhance productivity with our second key feature</p>
</div>
<div class="feature">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" class="feature-icon">
<path d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
<h3>Reliability</h3>
<p>Optimize your workflow with our third key feature</p>
</div>
</div>
</section>
<section id="about" class="about">
<div class="about-content">
<h2>About Us</h2>
<p>We are dedicated to creating simple, powerful solutions that transform how you work.</p>
</div>
</section>
<section id="contact" class="contact">
<div class="contact-form">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
</main>
<footer>
<p>&copy; 2023 Your Brand. All rights reserved.</p>
</footer>
</body>
</html>