mirror of https://github.com/kortix-ai/suna.git
174 lines
7.6 KiB
HTML
174 lines
7.6 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>
|
|
<nav class="navbar container">
|
|
<a href="#" class="logo">WebApp</a>
|
|
<div class="nav-links">
|
|
<a href="#home">Home</a>
|
|
<a href="#features">Features</a>
|
|
<a href="#about">About</a>
|
|
<a href="#contact">Contact</a>
|
|
</div>
|
|
<div class="nav-actions">
|
|
<button id="darkModeToggle" class="dark-mode-toggle" aria-label="Toggle dark mode">
|
|
<i class="fas fa-moon"></i>
|
|
<i class="fas fa-sun"></i>
|
|
</button>
|
|
<button class="mobile-menu-btn">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<!-- Hero Section -->
|
|
<section id="home" class="hero">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<div class="hero-text">
|
|
<h1>Build Amazing Web Applications</h1>
|
|
<p>A modern, responsive web application template to kickstart your next project.</p>
|
|
<div class="hero-buttons">
|
|
<a href="#features" class="btn btn-primary">Get Started</a>
|
|
<a href="#about" class="btn btn-secondary">Learn More</a>
|
|
</div>
|
|
</div>
|
|
<div class="hero-image">
|
|
<img src="https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80" alt="Web Development">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Features Section -->
|
|
<section id="features" class="features">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Key Features</h2>
|
|
<p>Everything you need to build modern web applications</p>
|
|
</div>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-mobile-alt"></i>
|
|
</div>
|
|
<h3>Responsive Design</h3>
|
|
<p>Looks great on all devices, from mobile phones to desktop computers.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-bolt"></i>
|
|
</div>
|
|
<h3>Fast Performance</h3>
|
|
<p>Optimized for speed and efficiency to provide the best user experience.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-code"></i>
|
|
</div>
|
|
<h3>Clean Code</h3>
|
|
<p>Well-structured, maintainable code following best practices.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- About Section -->
|
|
<section id="about" class="about">
|
|
<div class="container">
|
|
<div class="about-content">
|
|
<div class="about-text">
|
|
<h2>About Our Platform</h2>
|
|
<p>Our web application platform is designed to help developers build amazing applications quickly and efficiently. With a focus on user experience and performance, we provide all the tools you need to succeed.</p>
|
|
<p>Whether you're building a simple landing page or a complex web application, our platform has you covered with modern features and best practices built in.</p>
|
|
<a href="#contact" class="btn btn-primary">Get in Touch</a>
|
|
</div>
|
|
<div class="about-image">
|
|
<img src="https://images.unsplash.com/photo-1522542550221-31fd19575a2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80" alt="Web Development Team">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Contact Section -->
|
|
<section id="contact" class="contact">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Contact Us</h2>
|
|
<p>Get in touch with our team</p>
|
|
</div>
|
|
<div class="contact-form">
|
|
<form id="contactForm">
|
|
<div class="form-group">
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" name="name" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="message">Message</label>
|
|
<textarea id="message" name="message" rows="5" required></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Send Message</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-logo">
|
|
<a href="#">WebApp</a>
|
|
<p>Building the future of web applications.</p>
|
|
</div>
|
|
<div class="footer-links">
|
|
<div class="footer-column">
|
|
<h4>Product</h4>
|
|
<a href="#">Features</a>
|
|
<a href="#">Pricing</a>
|
|
<a href="#">Documentation</a>
|
|
</div>
|
|
<div class="footer-column">
|
|
<h4>Company</h4>
|
|
<a href="#">About</a>
|
|
<a href="#">Team</a>
|
|
<a href="#">Contact</a>
|
|
</div>
|
|
<div class="footer-column">
|
|
<h4>Resources</h4>
|
|
<a href="#">Blog</a>
|
|
<a href="#">Help Center</a>
|
|
<a href="#">Community</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<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-f"></i></a>
|
|
<a href="#"><i class="fab fa-instagram"></i></a>
|
|
<a href="#"><i class="fab fa-github"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |