wwwwqeqwe commited on
Commit
d2e4d70
Β·
verified Β·
1 Parent(s): ec98b94

pricing will consist of 3 tiers, tier 1 - limited credits for generation (1 credit per generation) 3 credits per day. tier 2 - 6 credits. tier 3 - unlimited credits, unlimited video generation

Browse files
Files changed (3) hide show
  1. README.md +8 -4
  2. index.html +131 -19
  3. pricing.html +178 -0
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Deepview Ai Video Wizard
3
- emoji: 🐨
4
- colorFrom: indigo
5
  colorTo: green
 
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: DeepView AI Video Wizard πŸ§™β€β™‚οΈ
3
+ colorFrom: purple
 
4
  colorTo: green
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).
14
+
index.html CHANGED
@@ -1,19 +1,131 @@
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">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>DeepView - AI Video Generation</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
12
+ <style>
13
+ .gradient-text {
14
+ background: linear-gradient(90deg, #4f46e5, #ec4899);
15
+ -webkit-background-clip: text;
16
+ background-clip: text;
17
+ color: transparent;
18
+ }
19
+ .video-preview {
20
+ transition: all 0.3s ease;
21
+ box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.3);
22
+ }
23
+ .video-preview:hover {
24
+ transform: translateY(-5px);
25
+ box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
26
+ }
27
+ .prompt-input:focus {
28
+ box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
29
+ }
30
+ </style>
31
+ </head>
32
+ <body class="bg-gray-900 text-white">
33
+ <div id="vanta-bg" class="fixed inset-0 -z-10"></div>
34
+
35
+ <nav class="bg-gray-900 bg-opacity-80 backdrop-blur-md border-b border-gray-800">
36
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
37
+ <div class="flex items-center justify-between h-16">
38
+ <div class="flex items-center">
39
+ <div class="flex-shrink-0">
40
+ <h1 class="text-2xl font-bold gradient-text">DeepView</h1>
41
+ </div>
42
+ </div>
43
+ <div class="flex items-center space-x-4">
44
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800">Home</a>
45
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800">Gallery</a>
46
+ <a href="pricing.html" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800">Pricing</a>
47
+ <button class="ml-4 bg-indigo-600 hover:bg-indigo-700 px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out">
48
+ Sign In
49
+ </button>
50
+ </div>
51
+ </div>
52
+ </div>
53
+ </nav>
54
+
55
+ <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
56
+ <section class="text-center mb-16">
57
+ <h1 class="text-5xl font-bold mb-6 leading-tight">Turn Your <span class="gradient-text">Imagination</span> Into <br>Stunning Videos</h1>
58
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">Powered by Runway Gen-3 AI, DeepView transforms your text into high-quality videos with just a few words.</p>
59
+ </section>
60
+
61
+ <section class="bg-gray-800 bg-opacity-60 rounded-xl p-8 backdrop-blur-md border border-gray-700 mb-16">
62
+ <div class="max-w-3xl mx-auto">
63
+ <div class="mb-6">
64
+ <label for="prompt" class="block text-sm font-medium text-gray-300 mb-2">Describe your video</label>
65
+ <div class="mt-1 relative rounded-md shadow-sm">
66
+ <textarea id="prompt" name="prompt" rows="3" class="prompt-input block w-full bg-gray-700 border border-gray-600 rounded-md p-4 text-white placeholder-gray-400 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500" placeholder="A futuristic city skyline at sunset with flying cars..."></textarea>
67
+ </div>
68
+ </div>
69
+
70
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
71
+ <div>
72
+ <label class="block text-sm font-medium text-gray-300 mb-2">Style</label>
73
+ <select class="block w-full bg-gray-700 border border-gray-600 rounded-md p-2 text-white">
74
+ <option>Cinematic</option>
75
+ <option>Anime</option>
76
+ <option>Realistic</option>
77
+ <option>Painting</option>
78
+ <option>Cyberpunk</option>
79
+ </select>
80
+ </div>
81
+ <div>
82
+ <label class="block text-sm font-medium text-gray-300 mb-2">Duration</label>
83
+ <select class="block w-full bg-gray-700 border border-gray-600 rounded-md p-2 text-white">
84
+ <option>4 seconds</option>
85
+ <option>8 seconds</option>
86
+ <option>12 seconds</option>
87
+ <option>16 seconds</option>
88
+ </select>
89
+ </div>
90
+ </div>
91
+
92
+ <button id="generate-btn" class="w-full bg-indigo-600 hover:bg-indigo-700 py-3 px-4 rounded-md font-medium flex items-center justify-center space-x-2 transition duration-150 ease-in-out">
93
+ <i data-feather="zap"></i>
94
+ <span>Generate Video (3 credits)</span>
95
+ </button>
96
+ </div>
97
+ </section>
98
+
99
+ <section class="mb-16">
100
+ <h2 class="text-2xl font-bold mb-8">Recent Creations</h2>
101
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
102
+ <div class="video-preview bg-gray-800 rounded-lg overflow-hidden">
103
+ <video class="w-full h-48 object-cover" controls>
104
+ <source src="https://example.com/video1.mp4" type="video/mp4">
105
+ </video>
106
+ <div class="p-4">
107
+ <h3 class="font-medium">Futuristic City</h3>
108
+ <p class="text-gray-400 text-sm">4 seconds β€’ Cinematic</p>
109
+ </div>
110
+ </div>
111
+ <div class="video-preview bg-gray-800 rounded-lg overflow-hidden">
112
+ <video class="w-full h-48 object-cover" controls>
113
+ <source src="https://example.com/video2.mp4" type="video/mp4">
114
+ </video>
115
+ <div class="p-4">
116
+ <h3 class="font-medium">Magical Forest</h3>
117
+ <p class="text-gray-400 text-sm">8 seconds β€’ Anime</p>
118
+ </div>
119
+ </div>
120
+ <div class="video-preview bg-gray-800 rounded-lg overflow-hidden">
121
+ <video class="w-full h-48 object-cover" controls>
122
+ <source src="https://example.com/video3.mp4" type="video/mp4">
123
+ </video>
124
+ <div class="p-4">
125
+ <h3 class="font-medium">Cyberpunk Alley</h3>
126
+ <p class="text-gray-400 text-sm">12 seconds β€’ Cyberpunk</p>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </body>
131
+ </html>
pricing.html ADDED
@@ -0,0 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Pricing - DeepView AI Video Wizard</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ .gradient-text {
12
+ background: linear-gradient(90deg, #4f46e5, #ec4899);
13
+ -webkit-background-clip: text;
14
+ background-clip: text;
15
+ color: transparent;
16
+ }
17
+ .pricing-card {
18
+ transition: all 0.3s ease;
19
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
20
+ }
21
+ .pricing-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
24
+ }
25
+ .popular-tag {
26
+ background: linear-gradient(90deg, #4f46e5, #ec4899);
27
+ }
28
+ </style>
29
+ </head>
30
+ <body class="bg-gray-900 text-white">
31
+ <nav class="bg-gray-900 bg-opacity-80 backdrop-blur-md border-b border-gray-800">
32
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
33
+ <div class="flex items-center justify-between h-16">
34
+ <div class="flex items-center">
35
+ <div class="flex-shrink-0">
36
+ <h1 class="text-2xl font-bold gradient-text">DeepView</h1>
37
+ </div>
38
+ </div>
39
+ <div class="flex items-center space-x-4">
40
+ <a href="index.html" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800">Home</a>
41
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800">Gallery</a>
42
+ <a href="pricing.html" class="px-3 py-2 rounded-md text-sm font-medium bg-gray-800">Pricing</a>
43
+ <button class="ml-4 bg-indigo-600 hover:bg-indigo-700 px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out">
44
+ Sign In
45
+ </button>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </nav>
50
+
51
+ <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
52
+ <section class="text-center mb-16">
53
+ <h1 class="text-4xl font-bold mb-4">Simple, <span class="gradient-text">Transparent</span> Pricing</h1>
54
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">Choose the plan that fits your creative needs. No hidden fees, cancel anytime.</p>
55
+ </section>
56
+
57
+ <section class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
58
+ <!-- Tier 1 -->
59
+ <div class="pricing-card bg-gray-800 rounded-xl p-8 border border-gray-700">
60
+ <h3 class="text-xl font-medium mb-2">Explorer</h3>
61
+ <p class="text-gray-400 mb-6">Perfect for casual creators</p>
62
+ <div class="mb-6">
63
+ <span class="text-4xl font-bold">$9</span>
64
+ <span class="text-gray-400">/month</span>
65
+ </div>
66
+ <ul class="space-y-3 mb-8">
67
+ <li class="flex items-center">
68
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
69
+ <span>1 credit per generation</span>
70
+ </li>
71
+ <li class="flex items-center">
72
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
73
+ <span>3 credits per day</span>
74
+ </li>
75
+ <li class="flex items-center">
76
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
77
+ <span>720p video quality</span>
78
+ </li>
79
+ <li class="flex items-center text-gray-500">
80
+ <i data-feather="x" class="mr-2 w-4 h-4"></i>
81
+ <span>Priority generation</span>
82
+ </li>
83
+ </ul>
84
+ <button class="w-full bg-gray-700 hover:bg-gray-600 py-3 px-4 rounded-md font-medium transition duration-150 ease-in-out">
85
+ Get Started
86
+ </button>
87
+ </div>
88
+
89
+ <!-- Tier 2 - Popular -->
90
+ <div class="pricing-card bg-gray-800 rounded-xl p-8 border-2 border-indigo-500 relative">
91
+ <div class="absolute -top-3 left-1/2 transform -translate-x-1/2">
92
+ <span class="popular-tag text-xs font-bold text-white px-3 py-1 rounded-full">POPULAR</span>
93
+ </div>
94
+ <h3 class="text-xl font-medium mb-2">Creator</h3>
95
+ <p class="text-gray-400 mb-6">For regular video creators</p>
96
+ <div class="mb-6">
97
+ <span class="text-4xl font-bold">$19</span>
98
+ <span class="text-gray-400">/month</span>
99
+ </div>
100
+ <ul class="space-y-3 mb-8">
101
+ <li class="flex items-center">
102
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
103
+ <span>1 credit per generation</span>
104
+ </li>
105
+ <li class="flex items-center">
106
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
107
+ <span>6 credits per day</span>
108
+ </li>
109
+ <li class="flex items-center">
110
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
111
+ <span>1080p video quality</span>
112
+ </li>
113
+ <li class="flex items-center">
114
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
115
+ <span>Priority generation</span>
116
+ </li>
117
+ </ul>
118
+ <button class="w-full bg-indigo-600 hover:bg-indigo-700 py-3 px-4 rounded-md font-medium transition duration-150 ease-in-out">
119
+ Get Started
120
+ </button>
121
+ </div>
122
+
123
+ <!-- Tier 3 -->
124
+ <div class="pricing-card bg-gray-800 rounded-xl p-8 border border-gray-700">
125
+ <h3 class="text-xl font-medium mb-2">Visionary</h3>
126
+ <p class="text-gray-400 mb-6">For unlimited creativity</p>
127
+ <div class="mb-6">
128
+ <span class="text-4xl font-bold">$49</span>
129
+ <span class="text-gray-400">/month</span>
130
+ </div>
131
+ <ul class="space-y-3 mb-8">
132
+ <li class="flex items-center">
133
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
134
+ <span>1 credit per generation</span>
135
+ </li>
136
+ <li class="flex items-center">
137
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
138
+ <span>Unlimited credits per day</span>
139
+ </li>
140
+ <li class="flex items-center">
141
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
142
+ <span>4K video quality</span>
143
+ </li>
144
+ <li class="flex items-center">
145
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
146
+ <span>Highest priority generation</span>
147
+ </li>
148
+ </ul>
149
+ <button class="w-full bg-gray-700 hover:bg-gray-600 py-3 px-4 rounded-md font-medium transition duration-150 ease-in-out">
150
+ Get Started
151
+ </button>
152
+ </div>
153
+ </section>
154
+
155
+ <section class="bg-gray-800 bg-opacity-60 rounded-xl p-8 backdrop-blur-md border border-gray-700">
156
+ <h2 class="text-2xl font-bold mb-4">Frequently Asked Questions</h2>
157
+ <div class="space-y-4">
158
+ <div class="border-b border-gray-700 pb-4">
159
+ <h3 class="font-medium">What is a credit?</h3>
160
+ <p class="text-gray-400 mt-1">A credit is used each time you generate a video, regardless of duration. Each credit gives you one complete video generation.</p>
161
+ </div>
162
+ <div class="border-b border-gray-700 pb-4">
163
+ <h3 class="font-medium">Can I change plans later?</h3>
164
+ <p class="text-gray-400 mt-1">Yes! You can upgrade or downgrade your plan at any time from your account settings.</p>
165
+ </div>
166
+ <div class="border-b border-gray-700 pb-4">
167
+ <h3 class="font-medium">Is there a free trial?</h3>
168
+ <p class="text-gray-400 mt-1">Yes! New users get 5 free credits to try out the platform before committing to a paid plan.</p>
169
+ </div>
170
+ </div>
171
+ </section>
172
+ </main>
173
+
174
+ <script>
175
+ feather.replace();
176
+ </script>
177
+ </body>
178
+ </html>