Spaces:
Running
Running
Add 3 files
Browse files- README.md +7 -5
- index.html +104 -19
- prompts.txt +3 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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: site-builder
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: green
|
5 |
+
colorTo: green
|
6 |
sdk: static
|
7 |
pinned: false
|
8 |
+
tags:
|
9 |
+
- deepsite
|
10 |
---
|
11 |
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
@@ -1,19 +1,104 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Here's the complete HTML file with the "Why Choose YouCantSeeMeVPN?" section added below the hero section:
|
2 |
+
|
3 |
+
```html
|
4 |
+
<!DOCTYPE html>
|
5 |
+
<html lang="en">
|
6 |
+
<head>
|
7 |
+
<meta charset="UTF-8">
|
8 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
9 |
+
<title>YouCantSeeMeVPN - Bypass Adult Content Restrictions</title>
|
10 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
11 |
+
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
12 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
13 |
+
<style>
|
14 |
+
body {
|
15 |
+
font-family: 'Inter', sans-serif;
|
16 |
+
background-color: #111;
|
17 |
+
color: white;
|
18 |
+
}
|
19 |
+
h1, h2, h3, h4 {
|
20 |
+
font-family: 'Montserrat', sans-serif;
|
21 |
+
}
|
22 |
+
.logo {
|
23 |
+
font-weight: 900;
|
24 |
+
}
|
25 |
+
.logo-vpn {
|
26 |
+
background-color: #f8981d;
|
27 |
+
color: #111;
|
28 |
+
padding: 0 8px;
|
29 |
+
border-radius: 4px;
|
30 |
+
font-weight: 700;
|
31 |
+
}
|
32 |
+
.hero-bg {
|
33 |
+
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
|
34 |
+
background-size: cover;
|
35 |
+
background-position: center;
|
36 |
+
}
|
37 |
+
.feature-card:hover {
|
38 |
+
transform: translateY(-5px);
|
39 |
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
|
40 |
+
}
|
41 |
+
.feature-icon {
|
42 |
+
font-size: 2.5rem;
|
43 |
+
margin-bottom: 1rem;
|
44 |
+
}
|
45 |
+
.modal {
|
46 |
+
transition: opacity 0.3s ease, visibility 0.3s ease;
|
47 |
+
}
|
48 |
+
.modal-content {
|
49 |
+
transform: translateY(20px);
|
50 |
+
transition: transform 0.3s ease;
|
51 |
+
}
|
52 |
+
.modal.active {
|
53 |
+
opacity: 1;
|
54 |
+
visibility: visible;
|
55 |
+
}
|
56 |
+
.modal.active .modal-content {
|
57 |
+
transform: translateY(0);
|
58 |
+
}
|
59 |
+
.accordion-content {
|
60 |
+
max-height: 0;
|
61 |
+
overflow: hidden;
|
62 |
+
transition: max-height 0.3s ease;
|
63 |
+
}
|
64 |
+
.accordion.active .accordion-content {
|
65 |
+
max-height: 300px;
|
66 |
+
}
|
67 |
+
</style>
|
68 |
+
</head>
|
69 |
+
<body>
|
70 |
+
<!-- Sticky Navbar -->
|
71 |
+
<nav class="sticky top-0 z-50 bg-black/80 backdrop-blur-sm border-b border-gray-800">
|
72 |
+
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
73 |
+
<div class="flex items-center space-x-8">
|
74 |
+
<a href="#" class="text-white text-2xl font-bold logo">
|
75 |
+
YouCantSee<span class="logo-vpn">VPN</span>
|
76 |
+
</a>
|
77 |
+
<div class="hidden md:flex space-x-6">
|
78 |
+
<a href="#features" class="text-gray-300 hover:text-white transition">Features</a>
|
79 |
+
<a href="#pricing" class="text-gray-300 hover:text-white transition">Pricing</a>
|
80 |
+
<a href="#faq" class="text-gray-300 hover:text-white transition">FAQ</a>
|
81 |
+
<a href="#contact" class="text-gray-300 hover:text-white transition">Contact</a>
|
82 |
+
</div>
|
83 |
+
</div>
|
84 |
+
<div class="flex items-center space-x-4">
|
85 |
+
<button id="loginBtn" class="text-gray-300 hover:text-white transition">Login</button>
|
86 |
+
<button id="signupBtn" class="bg-[#f8981d] hover:bg-[#e68a17] text-black font-bold py-2 px-4 rounded transition">
|
87 |
+
Sign Up
|
88 |
+
</button>
|
89 |
+
<button class="md:hidden text-white">
|
90 |
+
<i class="fas fa-bars"></i>
|
91 |
+
</button>
|
92 |
+
</div>
|
93 |
+
</div>
|
94 |
+
</nav>
|
95 |
+
|
96 |
+
<!-- Hero Section -->
|
97 |
+
<section class="hero-bg min-h-[70vh] flex items-center">
|
98 |
+
<div class="container mx-auto px-4 py-20">
|
99 |
+
<div class="max-w-3xl">
|
100 |
+
<h1 class="text-4xl md:text-6xl font-bold mb-6">
|
101 |
+
Trouble Accessing Adult Sites?
|
102 |
+
</h1>
|
103 |
+
<p class="text-xl md:text-2xl text-gray-300 mb-8">
|
104 |
+
Alabama and other states are blocking
|
prompts.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
I need a vpn site built from openvpn community edition so its free for me to build but i can charge people to use it. The site is called youcantseemevpn.com and here are your instructions: 🔥 YouCantSeeMeVPN – Instruction Prompt for Frontend AI Builder Build a bold and highly persuasive front end for a commercial VPN service called YouCantSeeMeVPN using HTML, Tailwind CSS, and JavaScript. This service is more than just another VPN — it's a liberation tool, especially for users in regions like Alabama where adult content access is restricted. This website should appeal directly to people who are frustrated by blocked content, especially PornHub-style adult sites. Go bold, go persuasive, and make it punch. 💡 Visual Brand Direction Logo: Similar layout to Pornhub but says: YouCantSeeMeVPN "YouCantSeeMe" in white "VPN" in orange background (like Pornhub's “hub” style) Color Scheme: Background: dark gray to black Accent: Pornhub orange #f8981d and pure white #ffffff Fonts: Bold, modern sans-serif (e.g., Inter or Montserrat) Design: Clean, adult, punchy, and slick — should feel like a mix between Pornhub and NordVPN’s UI 🛡️ Hero Section (Hook) Headline: "Having Trouble Accessing Adult Content?" Subheadline: “Alabama and other states have blocked sites like Pornhub, XHamster, and XVideos. But you don’t have to suffer.” Call to Action Buttons: “Unblock My Sites” → opens signup modal “See How It Works” → scrolls to explainer section Include background image or subtle animation of a globe with restricted signs crossed out 🔐 Features Section – What Makes Us Better Than Nord Grid-style cards with icons: Adult Site Access Restored – "Watch what you want, when you want. No judgment." More Global Servers – "From Boston to Botswana. We cover more than Nord." No Logs, No Censorship – "We don’t track you, throttle you, or ask questions." Optional Onion Routing – "Advanced users can tunnel through Tor for max anonymity." Military-Grade Encryption – "OpenVPN + AES-256 keeps you locked tight." Stream Anything, Anywhere – "Netflix, Hulu, and yes... late night favorites." 💰 Pricing Section Use Pornhub-style layout with bold, simplified cards Plan tiers: Casual Watcher – $9.99/month Nightly Binger – $5.99/month (billed yearly) VIP Access – $14.99/month – 10 devices, high-speed priority servers Add badges like “Most Popular” or “Save 40%” where needed. ⚙️ How It Works (Simple Steps) Sign Up & Choose Plan Download Your Custom Config Activate and Get Watching 🔗 Supported Devices Icons for: Windows, Mac, iOS, Android, Linux, Smart TVs, and Router setups 🔐 Login/Signup/Payment Modals Use modal popups with form fields styled in dark mode Signup CTA: “Stop missing out. Sign up and enjoy your content unrestricted.” 🧠 Dashboard Modal (After Login) Tabs: Servers | Configs | Devices | Account Show server list with ping/load + Connect button Download .ovpn config per device Connection status indicator: 🔴 Disconnected / 🟢 Connected Button: “Connect to VPN” toggles status 🧾 FAQ Section (Spicy but Legal) Example questions: "Can I watch Pornhub with this?" → "Yes. And Xhamster, XVideos, and more." "Will my ISP know?" → "Nope. Encrypted tunnels + no logs = private browsing." "Do you accept crypto?" → "Absolutely. BTC, ETH, and Monero." 📞 Contact & Footer Email support, live chat dummy section Footer should feel like a mix of Netflix and Pornhub Terms, Privacy, Refunds Socials: Reddit, Discord, X 💡 Notes for the AI: Make it persuasive, fun, and a little edgy but keep it clean enough to not trigger browser blocks. You can use placeholder text for payment details and config download links.
|
2 |
+
continue where this left off with the next section.. as in,keep what you already have and add this: Now add the "Why Choose YouCantSeeMeVPN?" section directly below the hero. This should be a 3-column responsive grid showing features like: 1. Adult Content Access Restored - Icon: 🔓 - Text: "Unblock sites like Pornhub, XHamster, XVideos in restricted states." 2. Global Server Network - Icon: 🌍 - Text: "Connect from Boston, LA, Tokyo, or Africa. More locations than Nord." 3. Onion Routing Option - Icon: 🧅 - Text: "For the ultra-private — route through the Tor network." Use dark background with Tailwind and the same ph-orange highlight. Add subtle hover effects on each card.
|
3 |
+
Create a full, single-page responsive HTML website using TailwindCSS and JavaScript for a VPN service called **YouCantSeeMeVPN**. This service helps users bypass adult content restrictions in states like Alabama where sites such as Pornhub, XHamster, and XVideos are blocked. The tone is bold, cheeky, adult-friendly, and persuasive. Think a mashup of NordVPN’s visual professionalism and Pornhub’s rebellious attitude. --- 🏷️ BRANDING: - Logo: "YouCantSeeMe" in white, "VPN" in a bold Pornhub-orange box - Fonts: Montserrat for headings, Inter for body - Colors: - Background: `#111` - Text: white - Accent: Pornhub orange `#f8981d` - Icons: Font Awesome --- 📦 LAYOUT STRUCTURE: 1. ✅ **Sticky Navbar** - Logo styled like Pornhub - Links: Features, Pricing, FAQ, Contact - Buttons: Login (`id="loginBtn"`), Sign Up (`id="signupBtn"`) 2. 🔥 **Hero Section** - Headline: “Trouble Accessing Adult Sites?” - Subtext: “Alabama and other states are blocking Pornhub, XHamster, and more. We’ll get you back to your late-night favorites — in seconds.” - CTA Buttons: - “Unblock My Sites” → opens signup modal - “Learn More” → scrolls to Features section - Background should be suggestive but not explicit — abstract globe or stealth image preferred 3. 💡 **Features Section** - Adult Content Access Restored - High-Speed Global Servers - Zero Logs, Zero Judgment - 5 Device Connections - Military-Grade Encryption 4. 💰 **Pricing Section** - 3 Cards: - $9.99/month — "Casual Watcher" - $5.99/month — "Nightly Binger" (billed yearly) - $14.99/month — "VIP Access" (10 devices) - Each card has a “Subscribe” button (`class="subscribeBtn"`) 5. ⚙️ **How It Works** - Step 1: Sign Up - Step 2: Download Config - Step 3: Connect & Chill - Include icons and short blurbs 6. ❓ **FAQ Section** (accordion style) - “Can I access Pornhub in Alabama?” → “Yes, and every other blocked site.” - “Is this legal?” → “Using a VPN is 100% legal in the US.” - “Do you keep logs?” → “Never. What you do is your business.” - “Do you accept crypto?” → “Yes. We support Bitcoin, Ethereum, and Monero.” - “Can I use it on my phone?” → “Absolutely. iPhone, Android, tablets, laptops.” 7. 📬 **Footer** - Links: Terms, Privacy Policy, Refund Policy, DMCA - Social Icons: Reddit, Twitter, Discord - Email: support@youcantseemevpn.com 8. 🔐 **Modals** - Login Modal (`id="loginModal"`): - Email, password fields - Save "logged in" to localStorage - Button opens Dashboard modal - Signup Modal (`id="signupModal"`): - Name, Email, Password, Agree to Terms - On submit: show success, simulate subscription - Show button to download a dummy `.ovpn` config (use Blob/download simulation) 9. 🧠 **Dashboard Modal** (`id="dashboardModal"`) - Show user email from localStorage - Show subscription tier (fake) - Show data usage bar (fake) - List 3 servers with: - Location, Ping, Load - Connect button that toggles status (🟢 Connected / 🔴 Disconnected) - Button to “Download Config Again” --- 📜 **JavaScript Logic To Include:** - Modal open/close - FAQ accordion toggles - Signup/login simulations using `localStorage` - Connect/Disconnect toggle with visual indicator - Generate dummy `.ovpn` file using Blob and download link --- ⚠️ ALL code (HTML, CSS, and JavaScript) must be in one file. Use Tailwind CDN, Font Awesome CDN, and inline JavaScript in a `<script>` tag at the bottom. No external JS files. --- The focus is on converting users who are frustrated by content bans into paying customers with a site that feels sleek, adult-themed, and empowering. Make the buttons and sections punchy and fun.
|