mirror of https://github.com/kortix-ai/suna.git
85 lines
3.0 KiB
HTML
85 lines
3.0 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">
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<nav class="nav">
|
|
<div class="logo">Brand</div>
|
|
<ul class="nav-links">
|
|
<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>
|
|
<button class="mobile-nav-toggle" aria-label="Menu">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</button>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="home" class="hero">
|
|
<div class="hero-content">
|
|
<h1>Welcome to the Future</h1>
|
|
<p>Transform your digital presence with our innovative solutions</p>
|
|
<div class="cta-group">
|
|
<button class="cta-button primary">Get Started</button>
|
|
<button class="cta-button secondary">Learn More</button>
|
|
</div>
|
|
</div>
|
|
<div class="hero-shape"></div>
|
|
</section>
|
|
|
|
<section id="features" class="features">
|
|
<h2>Our Features</h2>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🚀</div>
|
|
<h3>Fast Performance</h3>
|
|
<p>Lightning-quick load times and smooth interactions</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🎨</div>
|
|
<h3>Beautiful Design</h3>
|
|
<p>Stunning visuals that capture attention</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📱</div>
|
|
<h3>Responsive</h3>
|
|
<p>Perfect display on all devices</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="about" class="about">
|
|
<div class="about-content">
|
|
<h2>About Us</h2>
|
|
<p>We're dedicated to creating exceptional digital experiences that drive results.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="contact" class="contact">
|
|
<h2>Get in Touch</h2>
|
|
<form class="contact-form">
|
|
<input type="text" placeholder="Name" required>
|
|
<input type="email" placeholder="Email" required>
|
|
<textarea placeholder="Message" required></textarea>
|
|
<button type="submit">Send Message</button>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<p>© 2024 Brand. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |