shortvibe / index.html
sasahnkadrian's picture
<!DOCTYPE html>
ebfe50f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShortVibe | Discover Short Videos</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.video-card {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 12px;
overflow: hidden;
}
.video-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.gradient-bg {
background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
}
.video-thumbnail {
aspect-ratio: 9/16;
position: relative;
}
.video-thumbnail::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.3s ease;
}
.video-card:hover .video-thumbnail::after {
opacity: 1;
}
.play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
transition: all 0.3s ease;
background: rgba(255,255,255,0.2);
backdrop-filter: blur(5px);
border-radius: 50%;
padding: 12px;
}
.video-card:hover .play-icon {
opacity: 1;
}
.category-card {
transition: all 0.3s ease;
border: 1px solid rgba(0,0,0,0.05);
}
.category-card:hover {
transform: scale(1.05);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: white;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.scroll-hidden::-webkit-scrollbar {
display: none;
}
</style>
</head>
<body class="bg-gray-50 font-sans antialiased">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50 backdrop-blur-md bg-opacity-80">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex items-center space-x-8">
<div class="flex items-center">
<i data-feather="video" class="text-purple-600 mr-2 w-6 h-6"></i>
<span class="text-xl font-bold text-gray-900">ShortVibe</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="text-gray-600 hover:text-purple-600 nav-link">Home</a>
<a href="#" class="text-gray-600 hover:text-purple-600 nav-link">Explore</a>
<a href="#" class="text-gray-600 hover:text-purple-600 nav-link">Categories</a>
<a href="#" class="text-gray-600 hover:text-purple-600 nav-link">About</a>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="p-2 rounded-full hover:bg-gray-100 text-gray-600 hover:text-purple-600 transition">
<i data-feather="search" class="w-5 h-5"></i>
</button>
<button class="p-2 rounded-full hover:bg-gray-100 text-gray-600 hover:text-purple-600 transition">
<i data-feather="bell" class="w-5 h-5"></i>
</button>
<button class="flex items-center space-x-2 bg-purple-600 text-white px-4 py-2 rounded-full hover:bg-purple-700 transition">
<i data-feather="user" class="w-5 h-5"></i>
<span class="hidden sm:inline">Profile</span>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-24">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center" data-aos="fade-up">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">Discover & Create<br>Amazing Short Videos</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto opacity-90">Join millions of users sharing their creativity through short-form videos</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-purple-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition flex items-center justify-center">
<i data-feather="play" class="mr-2 w-5 h-5"></i> Watch Now
</button>
<button class="bg-transparent border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-purple-600 transition flex items-center justify-center">
<i data-feather="upload" class="mr-2 w-5 h-5"></i> Upload Video
</button>
</div>
</div>
</section>
<!-- Video Grid -->
<section class="py-16 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col sm:flex-row justify-between items-center mb-10">
<h2 class="text-3xl font-bold text-gray-900 mb-4 sm:mb-0">Trending Now</h2>
<div class="flex space-x-4">
<button class="text-gray-500 hover:text-purple-600 transition">
<i data-feather="chevron-left" class="w-6 h-6"></i>
</button>
<button class="text-purple-600 hover:text-purple-800 flex items-center font-medium">
View all <i data-feather="chevron-right" class="ml-1 w-5 h-5"></i>
</button>
</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Video Card 1 -->
<div class="video-card bg-white rounded-xl overflow-hidden shadow-sm" data-aos="fade-up">
<div class="video-thumbnail bg-gray-200 relative">
<img src="http://static.photos/technology/320x240/1" alt="Tech video" class="w-full h-full object-cover">
<div class="play-icon">
<i data-feather="play" class="text-white w-8 h-8"></i>
</div>
<div class="absolute bottom-3 right-3 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded">
0:15
</div>
</div>
<div class="p-4">
<div class="flex items-start space-x-3">
<img src="http://static.photos/people/40x40/1" alt="Creator" class="w-10 h-10 rounded-full">
<div>
<h3 class="font-semibold text-gray-900 mb-1 line-clamp-1">Amazing Tech Gadgets You Need in 2023</h3>
<p class="text-gray-600 text-sm mb-2">@techlover</p>
<div class="flex justify-between text-gray-500 text-sm">
<span class="flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i> 12.4K
</span>
<span class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i> 1.2K
</span>
<span class="flex items-center">
<i data-feather="message-circle" class="w-4 h-4 mr-1"></i> 243
</span>
</div>
</div>
</div>
</div>
</div>
<!-- Video Card 2 -->
<div class="video-card bg-white rounded-xl overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="100">
<div class="video-thumbnail bg-gray-200 relative">
<img src="http://static.photos/travel/320x240/2" alt="Travel video" class="w-full h-full object-cover">
<div class="play-icon">
<i data-feather="play" class="text-white w-8 h-8"></i>
</div>
<div class="absolute bottom-3 right-3 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded">
0:22
</div>
</div>
<div class="p-4">
<div class="flex items-start space-x-3">
<img src="http://static.photos/people/40x40/2" alt="Creator" class="w-10 h-10 rounded-full">
<div>
<h3 class="font-semibold text-gray-900 mb-1 line-clamp-1">Beautiful Sunset Views Around the World</h3>
<p class="text-gray-600 text-sm mb-2">@traveler</p>
<div class="flex justify-between text-gray-500 text-sm">
<span class="flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i> 8.7K
</span>
<span class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i> 943
</span>
<span class="flex items-center">
<i data-feather="message-circle" class="w-4 h-4 mr-1"></i> 187
</span>
</div>
</div>
</div>
</div>
</div>
<!-- Video Card 3 -->
<div class="video-card bg-white rounded-xl overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="200">
<div class="video-thumbnail bg-gray-200 relative">
<img src="http://static.photos/food/320x240/3" alt="Food video" class="w-full h-full object-cover">
<div class="play-icon">
<i data-feather="play" class="text-white w-8 h-8"></i>
</div>
<div class="absolute bottom-3 right-3 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded">
0:18
</div>
</div>
<div class="p-4">
<div class="flex items-start space-x-3">
<img src="http://static.photos/people/40x40/3" alt="Creator" class="w-10 h-10 rounded-full">
<div>
<h3 class="font-semibold text-gray-900 mb-1 line-clamp-1">Quick 5-Minute Breakfast Recipe Hack</h3>
<p class="text-gray-600 text-sm mb-2">@cheflife</p>
<div class="flex justify-between text-gray-500 text-sm">
<span class="flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i> 15.1K
</span>
<span class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i> 2.3K
</span>
<span class="flex items-center">
<i data-feather="message-circle" class="w-4 h-4 mr-1"></i> 412
</span>
</div>
</div>
</div>
</div>
</div>
<!-- Video Card 4 -->
<div class="video-card bg-white rounded-xl overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="300">
<div class="video-thumbnail bg-gray-200 relative">
<img src="http://static.photos/fitness/320x240/4" alt="Fitness video" class="w-full h-full object-cover">
<div class="play-icon">
<i data-feather="play" class="text-white w-8 h-8"></i>
</div>
<div class="absolute bottom-3 right-3 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded">
0:30
</div>
</div>
<div class="p-4">
<div class="flex items-start space-x-3">
<img src="http://static.photos/people/40x40/4" alt="Creator" class="w-10 h-10 rounded-full">
<div>
<h3 class="font-semibold text-gray-900 mb-1 line-clamp-1">Full Body Workout in Just 5 Minutes</h3>
<p class="text-gray-600 text-sm mb-2">@fitguru</p>
<div class="flex justify-between text-gray-500 text-sm">
<span class="flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i> 21.8K
</span>
<span class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i> 3.7K
</span>
<span class="flex items-center">
<i data-feather="message-circle" class="w-4 h-4 mr-1"></i> 598
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Categories -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-gray-900 mb-10 text-center">Browse Categories</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-6">
<a href="#" class="category-card bg-white rounded-xl p-5 text-center shadow-sm hover:shadow-md transition" data-aos="zoom-in">
<div class="w-14 h-14 bg-purple-100 rounded-xl flex items-center justify-center mx-auto mb-4">
<i data-feather="music" class="text-purple-600 w-6 h-6"></i>
</div>
<span class="font-medium text-gray-800">Music</span>
</a>
<a href="#" class="category-card bg-white rounded-xl p-5 text-center shadow-sm hover:shadow-md transition" data-aos="zoom-in" data-aos-delay="100">
<div class="w-14 h-14 bg-blue-100 rounded-xl flex items-center justify-center mx-auto mb-4">
<i data-feather="smile" class="text-blue-600 w-6 h-6"></i>
</div>
<span class="font-medium text-gray-800">Comedy</span>
</a>
<a href="#" class="category-card bg-white rounded-xl p-5 text-center shadow-sm hover:shadow-md transition" data-aos="zoom-in" data-aos-delay="200">
<div class="w-14 h-14 bg-green-100 rounded-xl flex items-center justify-center mx-auto mb-4">
<i data-feather="dollar-sign" class="text-green-600 w-6 h-6"></i>
</div>
<span class="font-medium text-gray-800">Finance</span>
</a>
<a href="#" class="category-card bg-white rounded-xl p-5 text-center shadow-sm hover:shadow-md transition" data-aos="zoom-in" data-aos-delay="300">
<div class="w-14 h-14 bg-red-100 rounded-xl flex items-center justify-center mx-auto mb-4">
<i data-feather="heart" class="text-red-600 w-6 h-6"></i>
</div>
<span class="font-medium text-gray-800">Fitness</span>
</a>
<a href="#" class="category-card bg-white rounded-xl p-5 text-center shadow-sm hover:shadow-md transition" data-aos="zoom-in" data-aos-delay="400">
<div class="w-14 h-14 bg-yellow-100 rounded-xl flex items-center justify-center mx-auto mb-4">
<i data-feather="shopping-bag" class="text-yellow-600 w-6 h-6"></i>
</div>
<span class="font-medium text-gray-800">Shopping</span>
</a>
<a href="#" class="category-card bg-white rounded-xl p-5 text-center shadow-sm hover:shadow-md transition" data-aos="zoom-in" data-aos-delay="500">
<div class="w-14 h-14 bg-indigo-100 rounded-xl flex items-center justify-center mx-auto mb-4">
<i data-feather="map-pin" class="text-indigo-600 w-6 h-6"></i>
</div>
<span class="font-medium text-gray-800">Travel</span>
</a>
</div>
</div>
</section>
<!-- Featured Creators -->
<section class="py-16 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col sm:flex-row justify-between items-center mb-10">
<h2 class="text-3xl font-bold text-gray-900 mb-4 sm:mb-0">Featured Creators</h2>
<button class="text-purple-600 hover:text-purple-800 flex items-center font-medium">
View all <i data-feather="chevron-right" class="ml-1 w-5 h-5"></i>
</button>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-6">
<!-- Creator 1 -->
<div class="creator-card bg-white rounded-xl p-4 text-center shadow-sm hover:shadow-md transition" data-aos="fade-up">
<div class="relative mx-auto mb-4">
<img src="http://static.photos/people/100x100/1" alt="Creator" class="w-20 h-20 rounded-full mx-auto object-cover border-2 border-purple-200">
<div class="absolute bottom-0 right-0 bg-purple-500 text-white rounded-full p-1">
<i data-feather="check" class="w-3 h-3"></i>
</div>
</div>
<h3 class="font-semibold text-gray-900">@techlover</h3>
<p class="text-gray-500 text-sm">Tech Enthusiast</p>
<button class="mt-3 text-sm bg-purple-50 text-purple-600 px-3 py-1 rounded-full hover:bg-purple-100 transition">
Follow
</button>
</div>
<!-- Creator 2 -->
<div class="creator-card bg-white rounded-xl p-4 text-center shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="100">
<div class="relative mx-auto mb-4">
<img src="http://static.photos/people/100x100/2" alt="Creator" class="w-20 h-20 rounded-full mx-auto object-cover border-2 border-blue-200">
<div class="absolute bottom-0 right-0 bg-blue-500 text-white rounded-full p-1">
<i data-feather="check" class="w-3 h-3"></i>
</div>
</div>
<h3 class="font-semibold text-gray-900">@traveler</h3>
<p class="text-gray-500 text-sm">Travel Blogger</p>
<button class="mt-3 text-sm bg-blue-50 text-blue-600 px-3 py-1 rounded-full hover:bg-blue-100 transition">
Follow
</button>
</div>
<!-- Creator 3 -->
<div class="creator-card bg-white rounded-xl p-4 text-center shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="200">
<div class="relative mx-auto mb-4">
<img src="http://static.photos/people/100x100/3" alt="Creator" class="w-20 h-20 rounded-full mx-auto object-cover border-2 border-green-200">
<div class="absolute bottom-0 right-0 bg-green-500 text-white rounded-full p-1">
<i data-feather="check" class="w-3 h-3"></i>
</div>
</div>
<h3 class="font-semibold text-gray-900">@cheflife</h3>
<p class="text-gray-500 text-sm">Professional Chef</p>
<button class="mt-3 text-sm bg-green-50 text-green-600 px-3 py-1 rounded-full hover:bg-green-100 transition">
Follow
</button>
</div>
<!-- Creator 4 -->
<div class="creator-card bg-white rounded-xl p-4 text-center shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="300">
<div class="relative mx-auto mb-4">
<img src="http://static.photos/people/100x100/4" alt="Creator" class="w-20 h-20 rounded-full mx-auto object-cover border-2 border-red-200">
<div class="absolute bottom-0 right-0 bg-red-500 text-white rounded-full p-1">
<i data-feather="check" class="w-3 h-3"></i>
</div>
</div>
<h3 class="font-semibold text-gray-900">@fitguru</h3>
<p class="text-gray-500 text-sm">Fitness Trainer</p>
<button class="mt-3 text-sm bg-red-50 text-red-600 px-3 py-1 rounded-full hover:bg-red-100 transition">
Follow
</button>
</div>
<!-- Creator 5 -->
<div class="creator-card bg-white rounded-xl p-4 text-center shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="400">
<div class="relative mx-auto mb-4">
<img src="http://static.photos/people/100x100/5" alt="Creator" class="w-20 h-20 rounded-full mx-auto object-cover border-2 border-yellow-200">
<div class="absolute bottom-0 right-0 bg-yellow-500 text-white rounded-full p-1">
<i data-feather="check" class="w-3 h-3"></i>
</div>
</div>
<h3 class="font-semibold text-gray-900">@fashionista</h3>
<p class="text-gray-500 text-sm">Fashion Influencer</p>
<button class="mt-3 text-sm bg-yellow-50 text-yellow-600 px-3 py-1 rounded-full hover:bg-yellow-100 transition">
Follow
</button>
</div>
<!-- Creator 6 -->
<div class="creator-card bg-white rounded-xl p-4 text-center shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="500">
<div class="relative mx-auto mb-4">
<img src="http://static.photos/people/100x100/6" alt="Creator" class="w-20 h-20 rounded-full mx-auto object-cover border-2 border-indigo-200">
<div class="absolute bottom-0 right-0 bg-indigo-500 text-white rounded-full p-1">
<i data-feather="check" class="w-3 h-3"></i>
</div>
</div>
<h3 class="font-semibold text-gray-900">@gamerpro</h3>
<p class="text-gray-500 text-sm">Gaming Streamer</p>
<button class="mt-3 text-sm bg-indigo-50 text-indigo-600 px-3 py-1 rounded-full hover:bg-indigo-100 transition">
Follow
</button>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-purple-600 text-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center" data-aos="zoom-in">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to share your creativity?</h2>
<p class="text-xl opacity-90 mb-8">Join our community of creators and start sharing your short videos today</p>
<button class="bg-white text-purple-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition flex items-center mx-auto">
<i data-feather="upload" class="mr-2 w-5 h-5"></i> Get Started
</button>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12">
<div>
<div class="flex items-center mb-6">
<i data-feather="video" class="text-purple-400 mr-3 w-8 h-8"></i>
<span class="text-2xl font-bold">ShortVibe</span>
</div>
<p class="text-gray-400 mb-6">The best platform for short-form video content</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="youtube" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h3 class="font-semibold text-lg mb-6">Company</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Newsroom</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="font-semibold text-lg mb-6">Support</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Safety Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community Guidelines</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Creator Portal</a></li>
</ul>
</div>
<div>
<h3 class="font-semibold text-lg mb-6">Legal</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Copyright</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 ShortVibe. All rights reserved.</p>
<div class="flex space-x-6">
<button class="flex items-center bg-gray-800 text-white px-4 py-2 rounded-lg text-sm hover:bg-gray-700 transition">
<i data-feather="globe" class="mr-2 w-4 h-4"></i> English
</button>
<button class="flex items-center bg-gray-800 text-white px-4 py-2 rounded-lg text-sm hover:bg-gray-700 transition">
<i data-feather="dollar-sign" class="mr-2 w-4 h-4"></i> USD
</button>
</div>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true,
offset: 100
});
feather.replace();
</script>
</body>
</html>