mirror of https://github.com/kortix-ai/suna.git
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
|
<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">YourBrand</div>
|
||
|
<nav>
|
||
|
<ul class="nav-links">
|
||
|
<li><a href="#">Home</a></li>
|
||
|
<li><a href="#">Features</a></li>
|
||
|
<li><a href="#">About</a></li>
|
||
|
<li><a href="#">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">Innovative solutions for modern challenges. Simplify, streamline, and succeed.</p>
|
||
|
<a href="#" class="cta-button">Get Started</a>
|
||
|
</div>
|
||
|
</section>
|
||
|
</main>
|
||
|
|
||
|
<footer class="footer">
|
||
|
<div class="container footer-content">
|
||
|
<p>© 2023 YourBrand. All rights reserved.</p>
|
||
|
</div>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|