mirror of https://github.com/kortix-ai/suna.git
75 lines
2.7 KiB
HTML
75 lines
2.7 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="reset.css">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header class="header container">
|
|
<div class="header-logo">Brand</div>
|
|
<nav>
|
|
<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>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="container hero-content">
|
|
<h1 class="hero-title">Transform Your Digital Experience</h1>
|
|
<p class="hero-subtitle">Discover innovative solutions that drive your business forward</p>
|
|
<a href="#features" class="cta-button">Get Started</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="features" class="features">
|
|
<div class="container">
|
|
<div class="feature-grid">
|
|
<div class="feature">
|
|
<div class="feature-icon">🚀</div>
|
|
<h3>Fast Performance</h3>
|
|
<p>Optimized solutions for maximum efficiency</p>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">🔒</div>
|
|
<h3>Secure Platform</h3>
|
|
<p>Advanced security measures to protect your data</p>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">📊</div>
|
|
<h3>Smart Analytics</h3>
|
|
<p>Comprehensive insights for strategic decisions</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-logo">Brand</div>
|
|
<div class="footer-links">
|
|
<a href="#home">Home</a>
|
|
<a href="#features">Features</a>
|
|
<a href="#contact">Contact</a>
|
|
</div>
|
|
<div class="footer-social">
|
|
<a href="#">Twitter</a>
|
|
<a href="#">LinkedIn</a>
|
|
<a href="#">GitHub</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-copyright">
|
|
© 2023 Brand. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |