Spaces:
Running
Running
create the other pages - Follow Up Deployment
Browse files- blog.html +42 -0
- examples.html +35 -0
- features.html +35 -0
- index.html +46 -27
- pricing.html +42 -0
- prompts.txt +35 -1
blog.html
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Blog | FLENvideos</title>
|
| 7 |
+
<!-- Same head content as index.html -->
|
| 8 |
+
</head>
|
| 9 |
+
<body class="bg-secondary text-white">
|
| 10 |
+
<!-- Navigation (same as index.html) -->
|
| 11 |
+
|
| 12 |
+
<!-- Blog Hero -->
|
| 13 |
+
<section class="hero-gradient pt-32 pb-20">
|
| 14 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 15 |
+
<h1 class="text-5xl md:text-6xl font-bold leading-tight" data-aos="fade-up">
|
| 16 |
+
FLENvideos Blog
|
| 17 |
+
</h1>
|
| 18 |
+
<p class="mt-6 text-xl text-gray-100 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
|
| 19 |
+
Tips, tutorials and inspiration for musicians
|
| 20 |
+
</p>
|
| 21 |
+
</div>
|
| 22 |
+
</section>
|
| 23 |
+
|
| 24 |
+
<!-- Blog Posts -->
|
| 25 |
+
<section class="py-20 bg-secondary">
|
| 26 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 27 |
+
<!-- List of blog posts with excerpts -->
|
| 28 |
+
</div>
|
| 29 |
+
</section>
|
| 30 |
+
|
| 31 |
+
<!-- Newsletter Signup -->
|
| 32 |
+
<section class="py-20 bg-gray-900">
|
| 33 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 34 |
+
<!-- Email signup form -->
|
| 35 |
+
</div>
|
| 36 |
+
</section>
|
| 37 |
+
|
| 38 |
+
<!-- Footer (same as index.html) -->
|
| 39 |
+
|
| 40 |
+
<!-- Scripts (same as index.html) -->
|
| 41 |
+
</body>
|
| 42 |
+
</html>
|
examples.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Examples | FLENvideos</title>
|
| 7 |
+
<!-- Same head content as index.html -->
|
| 8 |
+
</head>
|
| 9 |
+
<body class="bg-secondary text-white">
|
| 10 |
+
<!-- Navigation (same as index.html) -->
|
| 11 |
+
|
| 12 |
+
<!-- Examples Hero -->
|
| 13 |
+
<section class="hero-gradient pt-32 pb-20">
|
| 14 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 15 |
+
<h1 class="text-5xl md:text-6xl font-bold leading-tight" data-aos="fade-up">
|
| 16 |
+
See What's Possible
|
| 17 |
+
</h1>
|
| 18 |
+
<p class="mt-6 text-xl text-gray-100 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
|
| 19 |
+
Real videos created by musicians using FLENvideos
|
| 20 |
+
</p>
|
| 21 |
+
</div>
|
| 22 |
+
</section>
|
| 23 |
+
|
| 24 |
+
<!-- Video Gallery -->
|
| 25 |
+
<section class="py-20 bg-secondary">
|
| 26 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 27 |
+
<!-- Grid of video examples with descriptions -->
|
| 28 |
+
</div>
|
| 29 |
+
</section>
|
| 30 |
+
|
| 31 |
+
<!-- Footer (same as index.html) -->
|
| 32 |
+
|
| 33 |
+
<!-- Scripts (same as index.html) -->
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|
features.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Features | FLENvideos</title>
|
| 7 |
+
<!-- Same head content as index.html -->
|
| 8 |
+
</head>
|
| 9 |
+
<body class="bg-secondary text-white">
|
| 10 |
+
<!-- Navigation (same as index.html) -->
|
| 11 |
+
|
| 12 |
+
<!-- Features Hero -->
|
| 13 |
+
<section class="hero-gradient pt-32 pb-20">
|
| 14 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 15 |
+
<h1 class="text-5xl md:text-6xl font-bold leading-tight" data-aos="fade-up">
|
| 16 |
+
Powerful Features for Musicians
|
| 17 |
+
</h1>
|
| 18 |
+
<p class="mt-6 text-xl text-gray-100 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
|
| 19 |
+
Everything you need to create professional music videos without any technical skills
|
| 20 |
+
</p>
|
| 21 |
+
</div>
|
| 22 |
+
</section>
|
| 23 |
+
|
| 24 |
+
<!-- Main Features -->
|
| 25 |
+
<section class="py-20 bg-secondary">
|
| 26 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 27 |
+
<!-- Feature sections with detailed descriptions -->
|
| 28 |
+
</div>
|
| 29 |
+
</section>
|
| 30 |
+
|
| 31 |
+
<!-- Footer (same as index.html) -->
|
| 32 |
+
|
| 33 |
+
<!-- Scripts (same as index.html) -->
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|
index.html
CHANGED
|
@@ -18,6 +18,20 @@
|
|
| 18 |
}
|
| 19 |
}
|
| 20 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 22 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 23 |
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
|
@@ -51,15 +65,15 @@
|
|
| 51 |
<span class="ml-1 text-white text-xl font-light">videos</span>
|
| 52 |
</div>
|
| 53 |
<div class="hidden md:ml-10 md:flex md:space-x-8">
|
| 54 |
-
<a href="
|
| 55 |
-
<a href="
|
| 56 |
-
<a href="
|
| 57 |
-
<a href="
|
| 58 |
-
<a href="
|
| 59 |
</div>
|
| 60 |
</div>
|
| 61 |
<div class="flex items-center">
|
| 62 |
-
<a href="
|
| 63 |
<button class="md:hidden ml-4 text-gray-300">
|
| 64 |
<i data-feather="menu"></i>
|
| 65 |
</button>
|
|
@@ -86,12 +100,7 @@
|
|
| 86 |
</div>
|
| 87 |
<div data-aos="fade-left">
|
| 88 |
<div class="rounded-3xl overflow-hidden shadow-2xl">
|
| 89 |
-
<
|
| 90 |
-
<video class="absolute top-0 left-0 w-full h-full object-cover" autoplay muted loop>
|
| 91 |
-
<source src="https://rotorvideos.com/assets/home/rotor-demo-d9d78f32a4d1c4f5c4b5d99daf8e21bcef2db9c5a30aa39b31da4e2efc6d9b0a.mp4" type="video/mp4">
|
| 92 |
-
</video>
|
| 93 |
-
<div class="absolute inset-0 bg-black/20"></div>
|
| 94 |
-
</div>
|
| 95 |
</div>
|
| 96 |
</div>
|
| 97 |
</div>
|
|
@@ -110,8 +119,8 @@
|
|
| 110 |
<div class="feature-grid grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 111 |
<!-- Feature 1 -->
|
| 112 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="0">
|
| 113 |
-
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center">
|
| 114 |
-
<
|
| 115 |
</div>
|
| 116 |
<h3 class="text-xl font-bold mt-6">Lyric Videos</h3>
|
| 117 |
<p class="mt-4 text-gray-400">Sync your lyrics with beats automatically. Choose from dozens of beautiful templates.</p>
|
|
@@ -119,8 +128,8 @@
|
|
| 119 |
|
| 120 |
<!-- Feature 2 -->
|
| 121 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="100">
|
| 122 |
-
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center">
|
| 123 |
-
<
|
| 124 |
</div>
|
| 125 |
<h3 class="text-xl font-bold mt-6">Music Visualizers</h3>
|
| 126 |
<p class="mt-4 text-gray-400">Transform your audio into mesmerizing animated visuals that pulse with your beats.</p>
|
|
@@ -128,8 +137,8 @@
|
|
| 128 |
|
| 129 |
<!-- Feature 3 -->
|
| 130 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="200">
|
| 131 |
-
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center">
|
| 132 |
-
<
|
| 133 |
</div>
|
| 134 |
<h3 class="text-xl font-bold mt-6">Customization</h3>
|
| 135 |
<p class="mt-4 text-gray-400">Full control over colors, fonts, transitions and animations to match your brand.</p>
|
|
@@ -137,8 +146,8 @@
|
|
| 137 |
|
| 138 |
<!-- Feature 4 -->
|
| 139 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="0">
|
| 140 |
-
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center">
|
| 141 |
-
<
|
| 142 |
</div>
|
| 143 |
<h3 class="text-xl font-bold mt-6">One-Click Export</h3>
|
| 144 |
<p class="mt-4 text-gray-400">Export in 4K resolution, ready for YouTube, Instagram, TikTok and all platforms.</p>
|
|
@@ -146,8 +155,8 @@
|
|
| 146 |
|
| 147 |
<!-- Feature 5 -->
|
| 148 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="100">
|
| 149 |
-
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center">
|
| 150 |
-
<
|
| 151 |
</div>
|
| 152 |
<h3 class="text-xl font-bold mt-6">Stock Library</h3>
|
| 153 |
<p class="mt-4 text-gray-400">Access to millions of royalty-free videos, images, and animations for your projects.</p>
|
|
@@ -155,8 +164,8 @@
|
|
| 155 |
|
| 156 |
<!-- Feature 6 -->
|
| 157 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="200">
|
| 158 |
-
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center">
|
| 159 |
-
<
|
| 160 |
</div>
|
| 161 |
<h3 class="text-xl font-bold mt-6">Easy Sharing</h3>
|
| 162 |
<p class="mt-4 text-gray-400">Share directly to social platforms or generate embed codes for your website.</p>
|
|
@@ -193,7 +202,7 @@
|
|
| 193 |
"Rotor saved me thousands of dollars on video production. My lyric video went viral and helped my song get discovered."
|
| 194 |
</p>
|
| 195 |
<div class="mt-6 flex items-center">
|
| 196 |
-
<img src="http://static.photos/people/
|
| 197 |
<div class="ml-4">
|
| 198 |
<h4 class="font-bold">Emma Johnson</h4>
|
| 199 |
<p class="text-sm text-gray-400">Independent Artist</p>
|
|
@@ -221,7 +230,7 @@
|
|
| 221 |
"I used to struggle with promoting my music. Now I can create stunning visuals for every release in under an hour."
|
| 222 |
</p>
|
| 223 |
<div class="mt-6 flex items-center">
|
| 224 |
-
<img src="http://static.photos/people/
|
| 225 |
<div class="ml-4">
|
| 226 |
<h4 class="font-bold">Marcus Chen</h4>
|
| 227 |
<p class="text-sm text-gray-400">Electronic Producer</p>
|
|
@@ -249,7 +258,7 @@
|
|
| 249 |
"This app transformed how we market our band. Our engagement doubled after we started using Rotor for all our releases."
|
| 250 |
</p>
|
| 251 |
<div class="mt-6 flex items-center">
|
| 252 |
-
<img src="http://static.photos/people/
|
| 253 |
<div class="ml-4">
|
| 254 |
<h4 class="font-bold">The Midnight Hour</h4>
|
| 255 |
<p class="text-sm text-gray-400">Rock Band</p>
|
|
@@ -460,6 +469,16 @@
|
|
| 460 |
|
| 461 |
<!-- Scripts -->
|
| 462 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 463 |
document.addEventListener('DOMContentLoaded', function() {
|
| 464 |
AOS.init({
|
| 465 |
duration: 800,
|
|
|
|
| 18 |
}
|
| 19 |
}
|
| 20 |
</script>
|
| 21 |
+
<meta name="csrf-param" content="authenticity_token" />
|
| 22 |
+
<meta name="csrf-token" content="aMbIoezFXYIXPlmhnkG-w8uShXxL7QExOQTuvutzQAqwQomvj41ZFjjgmWpLkutCP5MEaApXi4dD_kRNnzAEWQ" />
|
| 23 |
+
<meta name="action-cable-url" content="/cable" />
|
| 24 |
+
<script>
|
| 25 |
+
window.__rotorRuntimeEnv__ = Object.freeze({
|
| 26 |
+
DEFAULT_STYLE_ID: '178357',
|
| 27 |
+
RAILS_ENV: 'production',
|
| 28 |
+
ROLLBAR_ACCESS_TOKEN: 'e64f7a40a9574096bbba77e3c38a7b80',
|
| 29 |
+
STRIPE_KEY: 'pk_live_4Vf6vKbnL1viw6o8ZbWLq5S7',
|
| 30 |
+
PAYPAL_CLIENT_ID: 'AchAm41aaCUhT3alNBGDZREwxUVvOcvcwykBiyqxRiE7PNhj04DL0t-hgoEIlw2UqE4ZRv7DRHjwG70a',
|
| 31 |
+
HELPDESK_MODE: "zendesk",
|
| 32 |
+
ZENDESK_API_KEY: "301f0d97-67e0-4dfb-911c-03628e9051bf"
|
| 33 |
+
});
|
| 34 |
+
</script>
|
| 35 |
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 36 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 37 |
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
|
|
|
| 65 |
<span class="ml-1 text-white text-xl font-light">videos</span>
|
| 66 |
</div>
|
| 67 |
<div class="hidden md:ml-10 md:flex md:space-x-8">
|
| 68 |
+
<a href="index.html" class="text-primary font-medium">Home</a>
|
| 69 |
+
<a href="features.html" class="text-gray-300 hover:text-white font-medium">Features</a>
|
| 70 |
+
<a href="pricing.html" class="text-gray-300 hover:text-white font-medium">Pricing</a>
|
| 71 |
+
<a href="examples.html" class="text-gray-300 hover:text-white font-medium">Examples</a>
|
| 72 |
+
<a href="blog.html" class="text-gray-300 hover:text-white font-medium">Blog</a>
|
| 73 |
</div>
|
| 74 |
</div>
|
| 75 |
<div class="flex items-center">
|
| 76 |
+
<a href="pricing.html" class="bg-primary hover:bg-cyan-600 text-white px-5 py-2 rounded-full font-medium transition-all">Get Started</a>
|
| 77 |
<button class="md:hidden ml-4 text-gray-300">
|
| 78 |
<i data-feather="menu"></i>
|
| 79 |
</button>
|
|
|
|
| 100 |
</div>
|
| 101 |
<div data-aos="fade-left">
|
| 102 |
<div class="rounded-3xl overflow-hidden shadow-2xl">
|
| 103 |
+
<img src="http://static.photos/technology/1024x576/42" alt="App interface" class="w-full h-auto">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
</div>
|
| 105 |
</div>
|
| 106 |
</div>
|
|
|
|
| 119 |
<div class="feature-grid grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 120 |
<!-- Feature 1 -->
|
| 121 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="0">
|
| 122 |
+
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center overflow-hidden">
|
| 123 |
+
<img src="http://static.photos/music/200x200/1" alt="Music icon" class="w-full h-full object-cover">
|
| 124 |
</div>
|
| 125 |
<h3 class="text-xl font-bold mt-6">Lyric Videos</h3>
|
| 126 |
<p class="mt-4 text-gray-400">Sync your lyrics with beats automatically. Choose from dozens of beautiful templates.</p>
|
|
|
|
| 128 |
|
| 129 |
<!-- Feature 2 -->
|
| 130 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="100">
|
| 131 |
+
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center overflow-hidden">
|
| 132 |
+
<img src="http://static.photos/technology/200x200/2" alt="Play icon" class="w-full h-full object-cover">
|
| 133 |
</div>
|
| 134 |
<h3 class="text-xl font-bold mt-6">Music Visualizers</h3>
|
| 135 |
<p class="mt-4 text-gray-400">Transform your audio into mesmerizing animated visuals that pulse with your beats.</p>
|
|
|
|
| 137 |
|
| 138 |
<!-- Feature 3 -->
|
| 139 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="200">
|
| 140 |
+
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center overflow-hidden">
|
| 141 |
+
<img src="http://static.photos/technology/200x200/3" alt="Settings icon" class="w-full h-full object-cover">
|
| 142 |
</div>
|
| 143 |
<h3 class="text-xl font-bold mt-6">Customization</h3>
|
| 144 |
<p class="mt-4 text-gray-400">Full control over colors, fonts, transitions and animations to match your brand.</p>
|
|
|
|
| 146 |
|
| 147 |
<!-- Feature 4 -->
|
| 148 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="0">
|
| 149 |
+
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center overflow-hidden">
|
| 150 |
+
<img src="http://static.photos/technology/200x200/4" alt="Upload icon" class="w-full h-full object-cover">
|
| 151 |
</div>
|
| 152 |
<h3 class="text-xl font-bold mt-6">One-Click Export</h3>
|
| 153 |
<p class="mt-4 text-gray-400">Export in 4K resolution, ready for YouTube, Instagram, TikTok and all platforms.</p>
|
|
|
|
| 155 |
|
| 156 |
<!-- Feature 5 -->
|
| 157 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="100">
|
| 158 |
+
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center overflow-hidden">
|
| 159 |
+
<img src="http://static.photos/technology/200x200/5" alt="Media icon" class="w-full h-full object-cover">
|
| 160 |
</div>
|
| 161 |
<h3 class="text-xl font-bold mt-6">Stock Library</h3>
|
| 162 |
<p class="mt-4 text-gray-400">Access to millions of royalty-free videos, images, and animations for your projects.</p>
|
|
|
|
| 164 |
|
| 165 |
<!-- Feature 6 -->
|
| 166 |
<div class="bg-gray-800 rounded-xl p-8" data-aos="fade-up" data-aos-delay="200">
|
| 167 |
+
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center overflow-hidden">
|
| 168 |
+
<img src="http://static.photos/technology/200x200/6" alt="Share icon" class="w-full h-full object-cover">
|
| 169 |
</div>
|
| 170 |
<h3 class="text-xl font-bold mt-6">Easy Sharing</h3>
|
| 171 |
<p class="mt-4 text-gray-400">Share directly to social platforms or generate embed codes for your website.</p>
|
|
|
|
| 202 |
"Rotor saved me thousands of dollars on video production. My lyric video went viral and helped my song get discovered."
|
| 203 |
</p>
|
| 204 |
<div class="mt-6 flex items-center">
|
| 205 |
+
<img src="http://static.photos/people/200x200/23" alt="Artist" class="w-12 h-12 rounded-full object-cover">
|
| 206 |
<div class="ml-4">
|
| 207 |
<h4 class="font-bold">Emma Johnson</h4>
|
| 208 |
<p class="text-sm text-gray-400">Independent Artist</p>
|
|
|
|
| 230 |
"I used to struggle with promoting my music. Now I can create stunning visuals for every release in under an hour."
|
| 231 |
</p>
|
| 232 |
<div class="mt-6 flex items-center">
|
| 233 |
+
<img src="http://static.photos/people/200x200/54" alt="Artist" class="w-12 h-12 rounded-full object-cover">
|
| 234 |
<div class="ml-4">
|
| 235 |
<h4 class="font-bold">Marcus Chen</h4>
|
| 236 |
<p class="text-sm text-gray-400">Electronic Producer</p>
|
|
|
|
| 258 |
"This app transformed how we market our band. Our engagement doubled after we started using Rotor for all our releases."
|
| 259 |
</p>
|
| 260 |
<div class="mt-6 flex items-center">
|
| 261 |
+
<img src="http://static.photos/people/200x200/76" alt="Artist" class="w-12 h-12 rounded-full object-cover">
|
| 262 |
<div class="ml-4">
|
| 263 |
<h4 class="font-bold">The Midnight Hour</h4>
|
| 264 |
<p class="text-sm text-gray-400">Rock Band</p>
|
|
|
|
| 469 |
|
| 470 |
<!-- Scripts -->
|
| 471 |
<script>
|
| 472 |
+
window.iterateSettings = {
|
| 473 |
+
apiKey: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb21wYW55X2lkIjoiNWRkZTljMTE4ZWExMDIwMDAxZWVhYWE2IiwiaWF0IjoxNTc0ODcwMDMzfQ.DKri_hIoy115lG5ieJRa8Nmt9HtXQh3s16k6dMwlkSI'
|
| 474 |
+
};
|
| 475 |
+
(function(i,t,e,r,a){if(t.getElementById(r)){return}
|
| 476 |
+
i.IterateObjectName=a;var z=function(){z.c(arguments)};z.q=[];
|
| 477 |
+
z.c=function(args){z.q.push(args)};i[a]=z;var js,fjs=t.getElementsByTagName(e)[0];
|
| 478 |
+
function l() {js=t.createElement(e);js.id=r;js.async=1;js.src="https://platform.iteratehq.com/loader.js";fjs.parentNode.insertBefore(js,fjs)};
|
| 479 |
+
if(t.readyState==="complete") {l();} else if(i.attachEvent) {i.attachEvent('onload', l);} else{i.addEventListener('load', l, false);}
|
| 480 |
+
}(window, document,'script','iterate-js','Iterate'));
|
| 481 |
+
|
| 482 |
document.addEventListener('DOMContentLoaded', function() {
|
| 483 |
AOS.init({
|
| 484 |
duration: 800,
|
pricing.html
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 | FLENvideos</title>
|
| 7 |
+
<!-- Same head content as index.html -->
|
| 8 |
+
</head>
|
| 9 |
+
<body class="bg-secondary text-white">
|
| 10 |
+
<!-- Navigation (same as index.html) -->
|
| 11 |
+
|
| 12 |
+
<!-- Pricing Hero -->
|
| 13 |
+
<section class="hero-gradient pt-32 pb-20">
|
| 14 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 15 |
+
<h1 class="text-5xl md:text-6xl font-bold leading-tight" data-aos="fade-up">
|
| 16 |
+
Simple, Transparent Pricing
|
| 17 |
+
</h1>
|
| 18 |
+
<p class="mt-6 text-xl text-gray-100 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
|
| 19 |
+
Choose the perfect plan for your music career
|
| 20 |
+
</p>
|
| 21 |
+
</div>
|
| 22 |
+
</section>
|
| 23 |
+
|
| 24 |
+
<!-- Pricing Plans -->
|
| 25 |
+
<section class="py-20 bg-secondary">
|
| 26 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 27 |
+
<!-- Pricing tables with more details than index.html -->
|
| 28 |
+
</div>
|
| 29 |
+
</section>
|
| 30 |
+
|
| 31 |
+
<!-- FAQ Section -->
|
| 32 |
+
<section class="py-20 bg-gray-900">
|
| 33 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 34 |
+
<!-- Frequently asked questions -->
|
| 35 |
+
</div>
|
| 36 |
+
</section>
|
| 37 |
+
|
| 38 |
+
<!-- Footer (same as index.html) -->
|
| 39 |
+
|
| 40 |
+
<!-- Scripts (same as index.html) -->
|
| 41 |
+
</body>
|
| 42 |
+
</html>
|
prompts.txt
CHANGED
|
@@ -65,4 +65,38 @@
|
|
| 65 |
<meta content='https://rotorvideos.com/assets/og/og-home-e1418ca489a399c9ae2aac24fc459d38e1c3ae4d0f913df048f602383db51b43.jpg' property='twitter:image'>
|
| 66 |
<meta content='@rotorvideos' name='twitter:site'>
|
| 67 |
<meta content='@rotorvideos' name='twitter:creator'>
|
| 68 |
-
call it FLENvideos
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
<meta content='https://rotorvideos.com/assets/og/og-home-e1418ca489a399c9ae2aac24fc459d38e1c3ae4d0f913df048f602383db51b43.jpg' property='twitter:image'>
|
| 66 |
<meta content='@rotorvideos' name='twitter:site'>
|
| 67 |
<meta content='@rotorvideos' name='twitter:creator'>
|
| 68 |
+
call it FLENvideos
|
| 69 |
+
<script>
|
| 70 |
+
window.iterateSettings = {
|
| 71 |
+
apiKey: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb21wYW55X2lkIjoiNWRkZTljMTE4ZWExMDIwMDAxZWVhYWE2IiwiaWF0IjoxNTc0ODcwMDMzfQ.DKri_hIoy115lG5ieJRa8Nmt9HtXQh3s16k6dMwlkSI'
|
| 72 |
+
};
|
| 73 |
+
(function(i,t,e,r,a){if(t.getElementById(r)){return}
|
| 74 |
+
i.IterateObjectName=a;var z=function(){z.c(arguments)};z.q=[];
|
| 75 |
+
z.c=function(args){z.q.push(args)};i[a]=z;var js,fjs=t.getElementsByTagName(e)[0];
|
| 76 |
+
function l() {js=t.createElement(e);js.id=r;js.async=1;js.src="https://platform.iteratehq.com/loader.js";fjs.parentNode.insertBefore(js,fjs)};
|
| 77 |
+
if(t.readyState==="complete") {l();} else if(i.attachEvent) {i.attachEvent('onload', l);} else{i.addEventListener('load', l, false);}
|
| 78 |
+
}(window, document,'script','iterate-js','Iterate'));
|
| 79 |
+
</script>
|
| 80 |
+
</script>
|
| 81 |
+
|
| 82 |
+
<script crossorigin='anonymous' src='https://kit.fontawesome.com/2bed64504a.js'></script>
|
| 83 |
+
|
| 84 |
+
<meta name="csrf-param" content="authenticity_token" />
|
| 85 |
+
<meta name="csrf-token" content="aMbIoezFXYIXPlmhnkG-w8uShXxL7QExOQTuvutzQAqwQomvj41ZFjjgmWpLkutCP5MEaApXi4dD_kRNnzAEWQ" />
|
| 86 |
+
<meta name="action-cable-url" content="/cable" />
|
| 87 |
+
<script src="https://rotorvideos.com/assets/react_app-c256f36500b814b64087d483ca91f75a8a69d1b54f27bce9fc017ef45ab7f9d5.js"></script>
|
| 88 |
+
<title>Rotor</title>
|
| 89 |
+
<script>
|
| 90 |
+
window.__rotorRuntimeEnv__ = Object.freeze({
|
| 91 |
+
DEFAULT_STYLE_ID: '178357',
|
| 92 |
+
RAILS_ENV: 'production',
|
| 93 |
+
ROLLBAR_ACCESS_TOKEN: 'e64f7a40a9574096bbba77e3c38a7b80',
|
| 94 |
+
STRIPE_KEY: 'pk_live_4Vf6vKbnL1viw6o8ZbWLq5S7',
|
| 95 |
+
PAYPAL_CLIENT_ID: 'AchAm41aaCUhT3alNBGDZREwxUVvOcvcwykBiyqxRiE7PNhj04DL0t-hgoEIlw2UqE4ZRv7DRHjwG70a',
|
| 96 |
+
HELPDESK_MODE: "zendesk", ZENDESK_API_KEY: "301f0d97-67e0-4dfb-911c-03628e9051bf",
|
| 97 |
+
|
| 98 |
+
});
|
| 99 |
+
</script>
|
| 100 |
+
add images
|
| 101 |
+
create the other pages
|
| 102 |
+
create the other pages
|