mirror of https://github.com/kortix-ai/suna.git
100 lines
3.7 KiB
HTML
100 lines
3.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 Web Application</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="logo">
|
|
<h1>WebApp</h1>
|
|
</div>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#" class="active">Home</a></li>
|
|
<li><a href="#">Features</a></li>
|
|
<li><a href="#">Pricing</a></li>
|
|
<li><a href="#">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="theme-toggle">
|
|
<button id="themeToggle"><i class="fas fa-moon"></i></button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Welcome to Our Web Application</h1>
|
|
<p>A modern, responsive web application template to kickstart your projects.</p>
|
|
<div class="cta">
|
|
<button class="btn primary">Get Started</button>
|
|
<button class="btn secondary">Learn More</button>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="features">
|
|
<div class="container">
|
|
<h2>Key Features</h2>
|
|
<div class="feature-grid">
|
|
<div class="feature-card">
|
|
<i class="fas fa-mobile-alt"></i>
|
|
<h3>Responsive Design</h3>
|
|
<p>Looks great on all devices, from mobile to desktop.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<i class="fas fa-bolt"></i>
|
|
<h3>Fast Performance</h3>
|
|
<p>Optimized for speed and efficiency.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<i class="fas fa-palette"></i>
|
|
<h3>Modern UI</h3>
|
|
<p>Clean and intuitive user interface.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<i class="fas fa-code"></i>
|
|
<h3>Easy to Customize</h3>
|
|
<p>Simple structure that's easy to modify and extend.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="demo">
|
|
<div class="container">
|
|
<h2>Interactive Demo</h2>
|
|
<div class="demo-container">
|
|
<div class="controls">
|
|
<input type="text" id="demoInput" placeholder="Enter some text...">
|
|
<button id="demoButton" class="btn primary">Submit</button>
|
|
</div>
|
|
<div id="message" class="message">
|
|
Your message will appear here.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2023 WebApp. All rights reserved.</p>
|
|
<div class="social-links">
|
|
<a href="#"><i class="fab fa-twitter"></i></a>
|
|
<a href="#"><i class="fab fa-facebook"></i></a>
|
|
<a href="#"><i class="fab fa-instagram"></i></a>
|
|
<a href="#"><i class="fab fa-github"></i></a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |