mirror of https://github.com/kortix-ai/suna.git
235 lines
7.4 KiB
HTML
235 lines
7.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>Workspace - Find Your Perfect Office Space</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<style>
|
|
:root {
|
|
--primary-color: #000;
|
|
--secondary-color: #444;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Arial', sans-serif;
|
|
}
|
|
|
|
nav {
|
|
background: white;
|
|
padding: 15px 0;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
font-size: 24px;
|
|
color: var(--primary-color) !important;
|
|
}
|
|
|
|
.hero {
|
|
height: 80vh;
|
|
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
|
|
background-size: cover;
|
|
background-position: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 48px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.cta-button {
|
|
padding: 15px 30px;
|
|
background: #fff;
|
|
color: var(--primary-color);
|
|
border: none;
|
|
border-radius: 25px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
.section {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.card img {
|
|
height: 250px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.card-title {
|
|
font-weight: 600;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.card-text {
|
|
color: var(--secondary-color);
|
|
}
|
|
|
|
.card-button {
|
|
padding: 10px 20px;
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
footer {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
padding: 50px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">Workspace</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Browse</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Become a Host</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Find Your Perfect Workspace</h1>
|
|
<p>Book beautiful spaces that inspire your best work</p>
|
|
<button class="cta-button">Explore Now</button>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<h2 class="section-title">How It Works</h2>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<i class="fas fa-search fa-3x"></i>
|
|
<h3 class="card-title">Search</h3>
|
|
<p class="card-text">Find the perfect space for your needs</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<i class="fas fa-building fa-3x"></i>
|
|
<h3 class="card-title">Visit</h3>
|
|
<p class="card-text">Tour spaces that fit your requirements</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<i class="fas fa-key fa-3x"></i>
|
|
<h3 class="card-title">Move In</h3>
|
|
<p class="card-text">Sign and start working immediately</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<h2 class="section-title">Featured Spaces</h2>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="card">
|
|
<img src="https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80" alt="Office Space">
|
|
<div class="card-body">
|
|
<h3 class="card-title">Modern Downtown Office</h3>
|
|
<p class="card-text">New York, NY</p>
|
|
<button class="card-button">Book Now</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Add more space cards as needed -->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container text-center">
|
|
<p>© 2023 Workspace. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script>
|
|
// Add smooth scrolling
|
|
$(document).ready(function(){
|
|
$('a[href^="#"]').on('click', function(event) {
|
|
event.preventDefault();
|
|
var target = $(this.getAttribute('href'));
|
|
if( target.length ) {
|
|
$('html, body').stop().animate({
|
|
scrollTop: target.offset().top
|
|
}, 1000);
|
|
}
|
|
});
|
|
|
|
// Add parallax effect to hero image
|
|
$(window).scroll(function(){
|
|
var scrolled = $(window).scrollTop();
|
|
$('.hero').css('background-position-y', -(scrolled * 0.5));
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |