mirror of https://github.com/kortix-ai/suna.git
94 lines
3.4 KiB
HTML
94 lines
3.4 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>
|
|
<nav class="navbar">
|
|
<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="#contact">Contact</a></li>
|
|
</ul>
|
|
<div class="hamburger">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="home" class="hero">
|
|
<div class="hero-content">
|
|
<h1>Welcome to the Future</h1>
|
|
<p>Experience innovation at its finest</p>
|
|
<button class="cta-button">Get Started</button>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="testimonials" class="testimonials">
|
|
<h2>What Our Clients Say</h2>
|
|
<div class="testimonial-grid">
|
|
<div class="testimonial-card">
|
|
<div class="testimonial-avatar">👤</div>
|
|
<p class="testimonial-text">"Amazing service! The team went above and beyond."</p>
|
|
<p class="testimonial-author">- John Doe, CEO</p>
|
|
</div>
|
|
<div class="testimonial-card">
|
|
<div class="testimonial-avatar">👤</div>
|
|
<p class="testimonial-text">"Incredible results. Would highly recommend!"</p>
|
|
<p class="testimonial-author">- Jane Smith, Designer</p>
|
|
</div>
|
|
<div class="testimonial-card">
|
|
<div class="testimonial-avatar">👤</div>
|
|
<p class="testimonial-text">"Professional and efficient service."</p>
|
|
<p class="testimonial-author">- Mike Johnson, Developer</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="features" class="features">
|
|
<h2>Our Features</h2>
|
|
<div class="feature-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🚀</div>
|
|
<h3>Fast Performance</h3>
|
|
<p>Lightning-quick loading times</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🎨</div>
|
|
<h3>Beautiful Design</h3>
|
|
<p>Stunning visuals and animations</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📱</div>
|
|
<h3>Responsive</h3>
|
|
<p>Works on all devices</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="contact" class="contact">
|
|
<h2>Contact Us</h2>
|
|
<form id="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>
|
|
<p>© 2024 Brand. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |