Join Now
 
 
 
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sleek Bento Grid</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@keyframes subtle-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.hover-float:hover {
animation: subtle-float 2s ease infinite;
}
</style>
</head>
<body class="bg-gray-100 min-h-screen p-4 md:p-8">
<div class="max-w-7xl mx-auto">
<!-- Bento Grid Container -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 md:gap-6">
<!-- Row 1 -->
<!-- Item 1: Large Feature -->
<div class="bg-gradient-to-br from-purple-600 to-indigo-800 rounded-2xl shadow-lg p-6 md:p-8 text-white col-span-1 md:col-span-2 hover-float transition-all duration-300 hover:shadow-xl">
<h2 class="text-xl md:text-2xl font-bold mb-3">Featured Project</h2>
<p class="mb-4 opacity-90">A comprehensive dashboard redesign for a finance application</p>
<div class="flex gap-2 mt-auto">
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">UI/UX</span>
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">React</span>
</div>
</div>
<!-- Item 2: About Me -->
<div class="bg-white rounded-2xl shadow-lg p-6 md:p-8 col-span-1 hover-float transition-all duration-300 hover:shadow-xl">
<h2 class="text-xl font-bold mb-3 text-gray-800">About Me</h2>
<p class="text-gray-600">Designer and developer with 5+ years of experience crafting digital experiences</p>
<div class="flex mt-4 gap-3">
<img src="https://media.licdn.com/dms/image/v2/C5603AQF2RfJkrETqaA/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1658999045365?e=1749081600&v=beta&t=_-w94GFBukvDhVBUQKXYV4ucwQVx6Qexf7eNnr2JISo" style="width: 40px;" alt="Profile" class="rounded-full">
<div>
<p class="font-medium text-gray-800">Sarah Chen</p>
<p class="text-sm text-gray-500">Senior Designer</p>
</div>
</div>
</div>
<!-- Item 3: Statistics -->
<div class="bg-gradient-to-br from-amber-400 to-orange-500 rounded-2xl shadow-lg p-6 md:p-8 text-white col-span-1 hover-float transition-all duration-300 hover:shadow-xl">
<h2 class="text-xl font-bold mb-3">Stats</h2>
<div class="space-y-3">
<div>
<p class="text-sm opacity-75">Projects Completed</p>
<p class="text-2xl font-bold">48</p>
</div>
<div>
<p class="text-sm opacity-75">Client Satisfaction</p>
<p class="text-2xl font-bold">98%</p>
</div>
</div>
</div>
<!-- Row 2 -->
<!-- Item 4: Blog Post -->
<div class="bg-white rounded-2xl shadow-lg p-6 md:p-8 col-span-1 hover-float transition-all duration-300 hover:shadow-xl">
<span class="inline-block px-3 py-1 bg-blue-100 text-blue-800 rounded-full text-xs font-medium mb-3">New Article</span>
<h2 class="text-xl font-bold mb-2 text-gray-800">Design Systems in 2023</h2>
<p class="text-gray-600 text-sm">Our latest insights on building scalable design systems.</p>
<div class="mt-4 flex items-center justify-between">
<span class="text-xs text-gray-500">5 min read</span>
<button class="text-blue-600 hover:text-blue-800">Read more →</button>
</div>
</div>
<!-- Item 5: Skills -->
<div class="bg-gradient-to-br from-teal-400 to-emerald-500 rounded-2xl shadow-lg p-6 md:p-8 text-white col-span-1 md:col-span-2 hover-float transition-all duration-300 hover:shadow-xl">
<h2 class="text-xl md:text-2xl font-bold mb-3">Skills & Technologies</h2>
<div class="flex flex-wrap gap-2 mt-2">
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">Figma</span>
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">React</span>
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">Tailwind CSS</span>
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">UX Research</span>
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">TypeScript</span>
<span class="bg-white/20 px-3 py-1 rounded-full text-sm">Prototyping</span>
</div>
</div>
<!-- Item 6: Contact -->
<div class="bg-gradient-to-br from-pink-500 to-rose-600 rounded-2xl shadow-lg p-6 md:p-8 text-white col-span-1 hover-float transition-all duration-300 hover:shadow-xl">
<h2 class="text-xl font-bold mb-3">Let's Connect</h2>
<p class="mb-4 opacity-90">Have a project in mind? Get in touch and let's create something amazing.</p>
<button class="bg-white text-rose-600 hover:bg-gray-100 px-4 py-2 rounded-lg font-medium transition-colors">
Contact Me
</button>
</div>
</div>
</div>
</body>
</html>