SafidRahman commited on
Commit
b386ecf
Β·
verified Β·
1 Parent(s): b19960e

Make full functional

Browse files

I want to build short reels porn website my porn site name will Waxir write me full site coding

Building a complete, production-ready website, especially one that handles video streaming, user accounts, and content management, is a complex undertaking involving various technologies and thousands of lines of code. It typically requires a team of developers.

However, I can provide you with a conceptual framework and simplified code examples for the core components you would need to get started with a "Waxir" short reels porn website. This will cover the basic structure for the frontend (what users see) and a basic backend (how the server manages content).

**Disclaimer:** This is a simplified blueprint for educational purposes. A production website would require robust security measures, advanced video processing, scalable hosting, a content delivery network (CDN), and much more sophisticated error handling and database management.

---

### **Waxir - Short Reels Website Blueprint**

This setup uses a modern web stack:
* **Frontend:** HTML, CSS, JavaScript (vanilla for simplicity, but frameworks like React/Vue/Angular are common)
* **Backend:** Node.js with Express.js (for API)
* **Database:** Conceptual (placeholder for metadata storage)
* **Video Storage:** Conceptual (placeholder for where video files live)

---

### **1. Core Technologies & Architecture Overview**

* **Frontend (User Interface):**
* **HTML:** Structures the web page (video grid, navigation, search).
* **CSS:** Styles the page to make it visually appealing.
* **JavaScript:** Fetches video data from the backend, displays videos dynamically, handles interactions.
* **Backend (Server Logic):**
* **Node.js:** JavaScript runtime to run server-side code.
* **Express.js:** Web framework for Node.js to create APIs (routes for getting videos, uploading, etc.).
* **File Upload Handler:** A library like `multer` to process video uploads.
* **Video Storage:** You'd typically use cloud storage services like AWS S3, DigitalOcean Spaces, or Google Cloud Storage to store the actual video files.
* **Video Processing (Conceptual):** For production, you'd need to transcode videos into various formats/resolutions for optimal streaming.
* **Database:**
* **PostgreSQL, MySQL, MongoDB:** To store metadata about each video (title, description, URL to video file, tags, views, etc.) and potentially user data.

---

### **2. Frontend Code (Simplified)**

This will be a single HTML file (`index.html`), a CSS file (`style.css`), and a JavaScript file (`script.js`) to display videos from a hypothetical backend API.

#### **`index.html` (Main Page Structure)**

```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Waxir - Short Reels</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="navbar">
<h1 class="site-title">Waxir</h1>
<nav class="main-nav">
<a href="/">Home</a>
<a href="/upload">Upload</a>
<!-- Add more navigation items as needed -->
</nav>
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search reels...">
<button id="search-button">Search</button>
</div>
</header>

<main class="video-grid" id="video-grid">
<!-- Video cards will be dynamically loaded here by JavaScript -->
<p>Loading videos...</p>
</main>

<footer class="footer">
<p>© 2024 Waxir. All rights reserved.</p>
</footer>

<script src="script.js"></script>
</body>
</html>
```

#### **`style.css` (Basic Styling)**

```css
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #1a1a1a;
color: #f0f0f0;
}

.navbar {
background-color: #000;
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #333;
}

.site-title {
color: #ff0055;
margin: 0;
font-size: 2.2em;
letter-spacing: 1px;
}

.main-nav a {
color: #f0f0f0;
text-decoration: none;
margin-left: 20px;
font-size: 1.1em;
transition: color 0.3s ease;
}

.main-nav a:hover {
color: #ff0055;
}

.search-bar input {
padding: 8px 12px;
border: 1px solid #555;
border-radius: 5px;
background-color: #333;
color: #f0f0f0;
}

.search-bar button {
padding: 8px 15px;
background-color: #ff0055;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-left: 5px;
transition: background-color 0.3s ease;
}

.search-bar button:hover {
background-color: #cc0044;
}

.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
padding: 30px;
max-width: 1200px;
margin: 20px auto;
}

.video-card {
background-color: #2a2a2a;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.video-card video {
width: 100%;
height: 200px; /* Fixed height for consistent reels display */
display: block;
object-fit: cover; /* Ensures video covers the area without distortion */
background-color: black; /* Placeholder for loading */
}

.video-info {
padding: 15px;
}

.video-info h3 {
margin-top: 0;
margin-bottom: 10px;
color: #ff0055;
font-size: 1.2em;
line-height: 1.3;
}

.video-info p {
font-size: 0.9em;
color: #bbb;
line-height: 1.5;
height: 45px; /* Limit description height */
overflow: hidden;
text-overflow: ellipsis;
}

.footer {
background-color: #000;
color: #888;
text-align: center;
padding: 20px;
margin-top: 50px;
border-top: 2px solid #333;
}
```

#### **`script.js` (Dynamic Video Loading)**

```javascript
document.addEventListener('DOMContentLoaded', () => {
const videoGrid = document.getElementById('video-grid');
const searchInput = document.getElementById('search-input');
const searchButton = document.getElementById('search-button');

// Function to fetch and display videos
async function fetchVideos(query = '') {
videoGrid.innerHTML = '<p>Loading videos...</p>';
try {
// This URL will be your backend API endpoint
const response = await fetch(`/api/videos?q=${encodeURIComponent(query)}`);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const videos = await response.json();

videoGrid.innerHTML = ''; // Clear loading message

if (videos.length === 0) {
videoGrid.innerHTML = '<p>No videos found. Try a different search!</p>';
return;
}

videos.forEach(video => {
const videoCard = document.createElement('div');
videoCard.className = 'video-card';
videoCard.innerHTML = `
<video controls muted preload="none" poster="${video.thumbnail_url || 'https://via.placeholder.com/280x200?text=Waxir+Video'}">
<source src="${video.video_url}" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="video-info">
<h3>${video.title}</h3>
<p>${video.description}</p>
</div>
`;
videoGrid.appendChild(videoCard);
});
} catch (error) {
console.error('Failed to fetch videos:', error);
videoGrid.innerHTML = '<p>Error loading videos. Please try again later.</p>';
}
}

// Initial load of videos
fetchVideos();

// Search functionality
searchButton.addEventListener('click', () => {
const query = searchInput.value;
fetchVideos(query);
});

searchInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') {
searchButton.click();
}
});
});
```

---

### **3. Backend Code (Simplified Node.js with Express)**

This example provides a basic Express server with routes for fetching videos and a placeholder for handling uploads. You'll need to install Node.js and then `npm init -y` in your project folder, followed by `npm install express multer cors`.

#### **`server.js` (Backend API)**

```javascript
const express = require('express');
const multer = require('multer'); // For handling file uploads
const cors = require('cors'); // For cross-origin requests
const path = require('path'); // For working with file paths
const fs = require('fs'); // For file system operations

const app = express();
const PORT = 3000;

// Enable CORS for all routes - IMPORTANT for development, restrict in production
app.use(cors());

// Middleware to parse JSON bodies
app.use(express.json());

// --- Video Storage Setup ---
// In a real application, you'd use cloud storage (AWS S3, DigitalOcean Spaces, etc.)
// For this example, we'll store files locally in a 'uploads' directory.
const UPLOAD_DIR = path.join(__dirname, 'uploads');
if (!fs.existsSync(UPLOAD_DIR)) {
fs.mkdirSync(UPLOAD_DIR);
}

// Multer storage configuration
const storage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, UPLOAD_DIR);
},
filename: (req, file, cb) => {
// Unique filename to prevent collisions
cb(null, `${file.fieldname}-${Date.now()}${path.extname(file.originalname)}`);
}
});

const upload = multer({
storage: storage,
limits: { fileSize: 1024 * 1024 * 200 }, // Max 200MB file size
fileFilter: (req, file, cb) => {
const filetypes = /mp4|mov|avi|webm/; // Allowed video types
const mimetype = filetypes.test(file.mimetype);
const extname = filetypes.test(path.extname(file.originalname).toLowe

Files changed (2) hide show
  1. README.md +7 -4
  2. index.html +432 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Waxir Spicy Shorts
3
- emoji: πŸ‘€
4
- colorFrom: indigo
5
  colorTo: yellow
 
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: Waxir - Spicy Shorts 🌢️
3
+ colorFrom: pink
 
4
  colorTo: yellow
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,433 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Waxir - Spicy Shorts</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script>
11
+ tailwind.config = {
12
+ darkMode: 'class',
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: {
17
+ 500: '#eab308',
18
+ DEFAULT: '#eab308',
19
+ },
20
+ secondary: {
21
+ 500: '#22c55e',
22
+ DEFAULT: '#22c55e',
23
+ }
24
+ }
25
+ }
26
+ }
27
+ }
28
+ </script>
29
+ <style>
30
+ .video-container {
31
+ aspect-ratio: 9/16;
32
+ }
33
+ .blur-overlay {
34
+ backdrop-filter: blur(5px);
35
+ }
36
+ .gradient-overlay {
37
+ background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-gray-900 text-gray-100 min-h-screen">
42
+ <!-- Navigation -->
43
+ <nav class="bg-gray-800 border-b border-gray-700 sticky top-0 z-50">
44
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
45
+ <div class="flex items-center justify-between h-16">
46
+ <!-- Logo -->
47
+ <div class="flex-shrink-0 flex items-center">
48
+ <span class="text-primary-500 font-bold text-2xl">Waxir</span>
49
+ <span class="ml-1 text-yellow-300">🌢️</span>
50
+ </div>
51
+
52
+ <!-- Search -->
53
+ <div class="flex-1 flex justify-center px-4 lg:px-0 max-w-md">
54
+ <div class="w-full">
55
+ <label for="search" class="sr-only">Search</label>
56
+ <div class="relative">
57
+ <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
58
+ <i data-feather="search" class="text-gray-400"></i>
59
+ </div>
60
+ <input id="search" name="search" class="block w-full pl-10 pr-3 py-2 border border-gray-600 rounded-full bg-gray-700 text-white placeholder-gray-400 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:border-primary-500" placeholder="Search..." type="search">
61
+ </div>
62
+ </div>
63
+ </div>
64
+
65
+ <!-- Right menu -->
66
+ <div class="flex items-center">
67
+ <button type="button" class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none focus:ring-1 focus:ring-primary-500">
68
+ <i data-feather="upload-cloud"></i>
69
+ </button>
70
+ <button type="button" class="ml-3 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none focus:ring-1 focus:ring-primary-500">
71
+ <i data-feather="heart"></i>
72
+ </button>
73
+ <button type="button" class="ml-3 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none focus:ring-1 focus:ring-primary-500">
74
+ <i data-feather="user"></i>
75
+ </button>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </nav>
80
+
81
+ <!-- Main content - Reels feed -->
82
+ <main class="pb-16">
83
+ <!-- Categories -->
84
+ <div class="bg-gray-800 px-4 py-2 overflow-x-auto">
85
+ <div class="flex space-x-4">
86
+ <button class="px-4 py-1 rounded-full bg-primary-500 text-white font-medium text-sm whitespace-nowrap">
87
+ For You
88
+ </button>
89
+ <button class="px-4 py-1 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600 font-medium text-sm whitespace-nowrap">
90
+ Trending
91
+ </button>
92
+ <button class="px-4 py-1 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600 font-medium text-sm whitespace-nowrap">
93
+ New
94
+ </button>
95
+ <button class="px-4 py-1 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600 font-medium text-sm whitespace-nowrap">
96
+ Popular
97
+ </button>
98
+ <button class="px-4 py-1 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600 font-medium text-sm whitespace-nowrap">
99
+ Amateur
100
+ </button>
101
+ </div>
102
+ </div>
103
+
104
+ <!-- Reels grid -->
105
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-1 p-1">
106
+ <!-- Video card 1 -->
107
+ <div class="relative group overflow-hidden rounded-lg video-container">
108
+ <video class="w-full h-full object-cover" poster="http://static.photos/red/640x360/1" muted loop>
109
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
110
+ </video>
111
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
112
+ <div class="flex justify-between">
113
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
114
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
115
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
116
+ </button>
117
+ </div>
118
+ <div>
119
+ <div class="flex items-center mb-2">
120
+ <img src="http://static.photos/people/40x40/1" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
121
+ <span class="ml-2 font-medium">HotDancer21</span>
122
+ </div>
123
+ <p class="text-sm line-clamp-2">Late night practice session getting spicy 😈πŸ”₯ #dance #spicy</p>
124
+ <div class="flex justify-between mt-2">
125
+ <button class="flex items-center text-sm">
126
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 2.4K
127
+ </button>
128
+ <button class="flex items-center text-sm">
129
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 124
130
+ </button>
131
+ <button class="flex items-center text-sm">
132
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
133
+ </button>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Video card 2 -->
140
+ <div class="relative group overflow-hidden rounded-lg video-container">
141
+ <video class="w-full h-full object-cover" poster="http://static.photos/black/640x360/2" muted loop>
142
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
143
+ </video>
144
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
145
+ <div class="flex justify-between">
146
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
147
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
148
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
149
+ </button>
150
+ </div>
151
+ <div>
152
+ <div class="flex items-center mb-2">
153
+ <img src="http://static.photos/people/40x40/2" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
154
+ <span class="ml-2 font-medium">FlexKing</span>
155
+ </div>
156
+ <p class="text-sm line-clamp-2">Morning workout routine showing off these gains πŸ’ͺ #fitness #gym</p>
157
+ <div class="flex justify-between mt-2">
158
+ <button class="flex items-center text-sm">
159
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 3.1K
160
+ </button>
161
+ <button class="flex items-center text-sm">
162
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 87
163
+ </button>
164
+ <button class="flex items-center text-sm">
165
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
166
+ </button>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Video card 3 -->
173
+ <div class="relative group overflow-hidden rounded-lg video-container">
174
+ <video class="w-full h-full object-cover" poster="http://static.photos/red/640x360/3" muted loop>
175
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
176
+ </video>
177
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
178
+ <div class="flex justify-between">
179
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
180
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
181
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
182
+ </button>
183
+ </div>
184
+ <div>
185
+ <div class="flex items-center mb-2">
186
+ <img src="http://static.photos/people/40x40/3" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
187
+ <span class="ml-2 font-medium">BeachBabe</span>
188
+ </div>
189
+ <p class="text-sm line-clamp-2">Sun, sand and... well you can guess the rest 😘 #beach #bikini</p>
190
+ <div class="flex justify-between mt-2">
191
+ <button class="flex items-center text-sm">
192
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 5.7K
193
+ </button>
194
+ <button class="flex items-center text-sm">
195
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 342
196
+ </button>
197
+ <button class="flex items-center text-sm">
198
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
199
+ </button>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Video card 4 -->
206
+ <div class="relative group overflow-hidden rounded-lg video-container">
207
+ <video class="w-full h-full object-cover" poster="http://static.photos/black/640x360/4" muted loop>
208
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
209
+ </video>
210
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
211
+ <div class="flex justify-between">
212
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
213
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
214
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
215
+ </button>
216
+ </div>
217
+ <div>
218
+ <div class="flex items-center mb-2">
219
+ <img src="http://static.photos/people/40x40/4" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
220
+ <span class="ml-2 font-medium">CosmicLover</span>
221
+ </div>
222
+ <p class="text-sm line-clamp-2">Exploring new positions from outer space πŸš€ #cosplay #scifi</p>
223
+ <div class="flex justify-between mt-2">
224
+ <button class="flex items-center text-sm">
225
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 1.9K
226
+ </button>
227
+ <button class="flex items-center text-sm">
228
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 56
229
+ </button>
230
+ <button class="flex items-center text-sm">
231
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
232
+ </button>
233
+ </div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Video card 5 -->
239
+ <div class="relative group overflow-hidden rounded-lg video-container">
240
+ <video class="w-full h-full object-cover" poster="http://static.photos/red/640x360/5" muted loop>
241
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
242
+ </video>
243
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
244
+ <div class="flex justify-between">
245
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
246
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
247
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
248
+ </button>
249
+ </div>
250
+ <div>
251
+ <div class="flex items-center mb-2">
252
+ <img src="http://static.photos/people/40x40/5" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
253
+ <span class="ml-2 font-medium">MasseusePro</span>
254
+ </div>
255
+ <p class="text-sm line-clamp-2">Special techniques for deep relaxation... very deep πŸ˜‰ #massage #sensual</p>
256
+ <div class="flex justify-between mt-2">
257
+ <button class="flex items-center text-sm">
258
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 4.2K
259
+ </button>
260
+ <button class="flex items-center text-sm">
261
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 231
262
+ </button>
263
+ <button class="flex items-center text-sm">
264
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
265
+ </button>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Video card 6 -->
272
+ <div class="relative group overflow-hidden rounded-lg video-container">
273
+ <video class="w-full h-full object-cover" poster="http://static.photos/black/640x360/6" muted loop>
274
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
275
+ </video>
276
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
277
+ <div class="flex justify-between">
278
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
279
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
280
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
281
+ </button>
282
+ </div>
283
+ <div>
284
+ <div class="flex items-center mb-2">
285
+ <img src="http://static.photos/people/40x40/6" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
286
+ <span class="ml-2 font-medium">PoolParty</span>
287
+ </div>
288
+ <p class="text-sm line-clamp-2">When the pool party gets a little too wild πŸ‘ #pool #bikini</p>
289
+ <div class="flex justify-between mt-2">
290
+ <button class="flex items-center text-sm">
291
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 7.1K
292
+ </button>
293
+ <button class="flex items-center text-sm">
294
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 498
295
+ </button>
296
+ <button class="flex items-center text-sm">
297
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
298
+ </button>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+
304
+ <!-- Video card 7 -->
305
+ <div class="relative group overflow-hidden rounded-lg video-container">
306
+ <video class="w-full h-full object-cover" poster="http://static.photos/red/640x360/7" muted loop>
307
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
308
+ </video>
309
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
310
+ <div class="flex justify-between">
311
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
312
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
313
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
314
+ </button>
315
+ </div>
316
+ <div>
317
+ <div class="flex items-center mb-2">
318
+ <img src="http://static.photos/people/40x40/7" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
319
+ <span class="ml-2 font-medium">YogaQueen</span>
320
+ </div>
321
+ <p class="text-sm line-clamp-2">Showing off my flexibility in ways you wouldn't believe πŸ§˜β€β™€οΈ #yoga #flexible</p>
322
+ <div class="flex justify-between mt-2">
323
+ <button class="flex items-center text-sm">
324
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 3.8K
325
+ </button>
326
+ <button class="flex items-center text-sm">
327
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 187
328
+ </button>
329
+ <button class="flex items-center text-sm">
330
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
331
+ </button>
332
+ </div>
333
+ </div>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Video card 8 -->
338
+ <div class="relative group overflow-hidden rounded-lg video-container">
339
+ <video class="w-full h-full object-cover" poster="http://static.photos/black/640x360/8" muted loop>
340
+ <source src="https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4" type="video/mp4">
341
+ </video>
342
+ <div class="absolute inset-0 gradient-overlay flex flex-col justify-between p-4 opacity-0 group-hover:opacity-100 transition-opacity">
343
+ <div class="flex justify-between">
344
+ <span class="bg-primary-500 text-xs font-bold px-2 py-1 rounded">18+</span>
345
+ <button class="text-white bg-black bg-opacity-50 rounded-full p-2">
346
+ <i data-feather="more-vertical" class="w-4 h-4"></i>
347
+ </button>
348
+ </div>
349
+ <div>
350
+ <div class="flex items-center mb-2">
351
+ <img src="http://static.photos/people/40x40/8" alt="Creator" class="w-8 h-8 rounded-full border-2 border-primary-500">
352
+ <span class="ml-2 font-medium">LateNightLover</span>
353
+ </div>
354
+ <p class="text-sm line-clamp-2">What happens when the lights go out... 😏 #bedroom #couple</p>
355
+ <div class="flex justify-between mt-2">
356
+ <button class="flex items-center text-sm">
357
+ <i data-feather="heart" class="w-4 h-4 mr-1"></i> 6.3K
358
+ </button>
359
+ <button class="flex items-center text-sm">
360
+ <i data-feather="message-square" class="w-4 h-4 mr-1"></i> 412
361
+ </button>
362
+ <button class="flex items-center text-sm">
363
+ <i data-feather="share-2" class="w-4 h-4 mr-1"></i> Share
364
+ </button>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </main>
371
+
372
+ <!-- Bottom navigation -->
373
+ <div class="fixed bottom-0 left-0 right-0 bg-gray-800 border-t border-gray-700 flex justify-around py-3 z-50">
374
+ <a href="#" class="text-primary-500 flex flex-col items-center">
375
+ <i data-feather="home" class="w-6 h-6"></i>
376
+ <span class="text-xs mt-1">Home</span>
377
+ </a>
378
+ <a href="#" class="text-gray-400 hover:text-white flex flex-col items-center">
379
+ <i data-feather="compass" class="w-6 h-6"></i>
380
+ <span class="text-xs mt-1">Explore</span>
381
+ </a>
382
+ <a href="#" class="bg-primary-500 text-white rounded-full p-3 -mt-8 shadow-lg shadow-primary-500/30">
383
+ <i data-feather="plus" class="w-6 h-6"></i>
384
+ </a>
385
+ <a href="#" class="text-gray-400 hover:text-white flex flex-col items-center">
386
+ <i data-feather="heart" class="w-6 h-6"></i>
387
+ <span class="text-xs mt-1">Likes</span>
388
+ </a>
389
+ <a href="#" class="text-gray-400 hover:text-white flex flex-col items-center">
390
+ <i data-feather="user" class="w-6 h-6"></i>
391
+ <span class="text-xs mt-1">Profile</span>
392
+ </a>
393
+ </div>
394
+
395
+ <!-- Age verification modal -->
396
+ <div class="fixed inset-0 bg-black bg-opacity-90 flex items-center justify-center z-50 blur-overlay">
397
+ <div class="bg-gray-800 rounded-lg p-8 max-w-md w-full mx-4 border border-primary-500 shadow-lg">
398
+ <div class="text-center mb-6">
399
+ <h2 class="text-2xl font-bold text-primary-500 mb-2">πŸ”ž Age Verification</h2>
400
+ <p class="text-gray-300">This website contains adult content and is only for viewers 18+</p>
401
+ </div>
402
+ <div class="flex flex-col space-y-4">
403
+ <button class="bg-primary-500 hover:bg-primary-600 text-white font-bold py-3 px-4 rounded-full transition">
404
+ I am 18 or older - Enter
405
+ </button>
406
+ <button class="bg-gray-700 hover:bg-gray-600 text-gray-300 font-bold py-3 px-4 rounded-full transition">
407
+ I am under 18 - Exit
408
+ </button>
409
+ </div>
410
+ <p class="text-xs text-gray-500 mt-6 text-center">By entering, you agree to our Terms of Service and acknowledge our Privacy Policy</p>
411
+ </div>
412
+ </div>
413
+
414
+ <script>
415
+ // Initialize feather icons
416
+ feather.replace();
417
+
418
+ // Simple video play/pause on hover
419
+ document.querySelectorAll('.video-container').forEach(container => {
420
+ const video = container.querySelector('video');
421
+
422
+ container.addEventListener('mouseenter', () => {
423
+ video.play().catch(e => console.log('Autoplay prevented:', e));
424
+ });
425
+
426
+ container.addEventListener('mouseleave', () => {
427
+ video.pause();
428
+ video.currentTime = 0;
429
+ });
430
+ });
431
+ </script>
432
+ </body>
433
  </html>