huggyspace-vibes / index.html
justzingy09876's picture
Please remove the three projects right under my about me but keep everything else the same
d1ae32c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HuggySpace Vibes</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="gradient-bg min-h-screen font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="https://huggingface.co/" class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="Hugging Face">
</a>
</div>
<div class="flex items-center space-x-4">
<a href="https://huggingface.co/spaces" class="text-gray-700 hover:text-gray-900 px-3 py-2 text-sm font-medium">Spaces</a>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<!-- Profile Header -->
<div class="flex flex-col items-center mb-12">
<img class="h-24 w-24 rounded-full mb-4" src="https://huggingface.co/avatars/b0ea8a1a9413d323a231e482bb481dab.svg" alt="Profile">
<div class="text-center">
<h1 class="text-3xl font-bold text-gray-800">justzingy09876</h1>
<p class="text-gray-600">/ my-awesome-website</p>
<div class="mt-4">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-green-100 text-green-800">
<i data-feather="activity" class="w-4 h-4 mr-1"></i> Running
</span>
</div>
</div>
</div>
<!-- Navigation Tabs -->
<div class="border-b border-gray-200 mb-8">
<nav class="-mb-px flex space-x-8">
<a href="#" class="border-indigo-500 text-indigo-600 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">App</a>
<a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Files</a>
<a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">Community</a>
</nav>
</div>
<!-- Content Section -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden mb-8">
<div class="p-6">
<div class="flex items-center justify-between mb-4">
<h2 class="text-xl font-semibold text-gray-800">Welcome to my Awesome Website</h2>
</div>
<div class="text-gray-600">
<p>This space is currently running and ready for your interactions!</p>
</div>
<div class="mt-6 flex justify-center">
<div class="animate-pulse">
<i data-feather="refresh-cw" class="w-8 h-8 text-gray-400"></i>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="text-center text-gray-500 text-sm mt-12">
<p>Powered by Hugging Face Spaces</p>
</div>
</main>
<script>
feather.replace();
</script>
</body>
</html>