mikasa-home / index.html
ruaultadrienperso's picture
Create a VERY VERY SHORT website. Please DON’T PUT IMAGES. DON’T TALK ABOUT MOBILE APPS. Be aware that we are talking about a start up that is not launched yet so it must be clear that it is coming soon. You can use this color but it is not mandatory: #765CFF, you could for example use it in a gradient. Base yourself on this business concept: ### ## Business Concept **Mikasa is the next-generation property rental marketplace, on a mission to connect tenants with their future homes. It will be the go-to platform for rental listings, referencing all the listings of the market, from entire properties to flat shares and individual rooms, for free.** **Unlike traditional services, Mikasa welcomes listings from both professionals and individuals, at no cost. This includes agency listings, flat shares or sublets, making Mikasa a go-to hub for discovering and listing rentals of all kinds.** **It will streamline the property discovery and rental process thanks to intelligent filters, integrated user communications and a suite of tools facilitating rental management for tenants, landlords and agencies. The platform will launch as a web, Android and iOS app.** ### Pain points addressed - In Switzerland, the property rental listings are split in many different marketplaces. Therefore the flat seekers undergo the pain of visiting different interfaces to have a good overview of the market. - Many ads are listed on Facebook which is not convenient for users because they cannot filter properties based on their search criteria. ### - Initial Deployment
5dac6f3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mikasa | Next-Gen Property Rental Marketplace</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.gradient-text {
background: linear-gradient(90deg, #765CFF 0%, #9E8AFF 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="min-h-screen bg-gray-50 flex flex-col">
<!-- Navigation -->
<nav class="w-full py-6 px-4 sm:px-8 flex justify-between items-center">
<div class="flex items-center">
<span class="text-2xl font-bold gradient-text">MIKASA</span>
</div>
<div>
<button class="px-4 py-2 rounded-full bg-gradient-to-r from-[#765CFF] to-[#9E8AFF] text-white font-medium hover:opacity-90 transition">
Notify Me
</button>
</div>
</nav>
<!-- Hero Section -->
<main class="flex-grow flex flex-col items-center justify-center text-center px-4 sm:px-8 py-12">
<div class="max-w-3xl">
<div class="inline-block mb-6 px-4 py-2 bg-purple-50 rounded-full text-[#765CFF] font-medium">
<span class="animate-pulse mr-2"></span> Coming Soon
</div>
<h1 class="text-4xl sm:text-5xl md:text-6xl font-bold mb-6 leading-tight">
The <span class="gradient-text">simplest way</span> to find your next home
</h1>
<p class="text-xl text-gray-600 mb-12 max-w-2xl mx-auto">
Mikasa is revolutionizing property rentals by unifying all listings in one place—from entire properties to shared spaces, all searchable for free.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<div class="relative w-full sm:w-96">
<input type="email" placeholder="Enter your email"
class="w-full px-6 py-4 rounded-full border border-gray-200 focus:outline-none focus:ring-2 focus:ring-[#765CFF] focus:border-transparent">
<button class="absolute right-2 top-2 bottom-2 px-6 rounded-full bg-gradient-to-r from-[#765CFF] to-[#9E8AFF] text-white font-medium hover:opacity-90 transition">
Get Early Access
</button>
</div>
</div>
</div>
</main>
<!-- Features -->
<section class="py-16 px-4 sm:px-8 bg-white">
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="p-6 rounded-xl bg-gray-50">
<div class="w-12 h-12 mb-4 rounded-lg bg-[#765CFF] bg-opacity-10 flex items-center justify-center text-[#765CFF] text-xl">
<i class="fas fa-search"></i>
</div>
<h3 class="text-xl font-bold mb-2">One Marketplace</h3>
<p class="text-gray-600">All rental listings in one place - agencies, private landlords, and shared spaces.</p>
</div>
<div class="p-6 rounded-xl bg-gray-50">
<div class="w-12 h-12 mb-4 rounded-lg bg-[#765CFF] bg-opacity-10 flex items-center justify-center text-[#765CFF] text-xl">
<i class="fas fa-filter"></i>
</div>
<h3 class="text-xl font-bold mb-2">Smart Filters</h3>
<p class="text-gray-600">Find exactly what you need with powerful search and filter tools.</p>
</div>
<div class="p-6 rounded-xl bg-gray-50">
<div class="w-12 h-12 mb-4 rounded-lg bg-[#765CFF] bg-opacity-10 flex items-center justify-center text-[#765CFF] text-xl">
<i class="fas fa-hand-holding-usd"></i>
</div>
<h3 class="text-xl font-bold mb-2">Free for Everyone</h3>
<p class="text-gray-600">List and search properties with no fees - for individuals and professionals.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 px-4 sm:px-8 border-t border-gray-100">
<div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<span class="text-xl font-bold gradient-text">MIKASA</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-[#765CFF] transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-[#765CFF] transition">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-[#765CFF] transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
</div>
</div>
</footer>
<script>
// Simple form submission handler
document.querySelector('button').addEventListener('click', function() {
const email = document.querySelector('input[type="email"]').value;
if(email) {
alert(`Thanks for your interest! We'll notify you at ${email} when we launch.`);
} else {
alert('Please enter your email address');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ruaultadrienperso/mikasa-home" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>