Parcourir la source

📝 Update README and enhance footer in HTML template for clarity and user engagement

sh13y il y a 6 mois
Parent
commit
fd2023e5d0
2 fichiers modifiés avec 66 ajouts et 7 suppressions
  1. 10 6
      README.md
  2. 56 1
      simple_magnet2direct.py

+ 10 - 6
README.md

@@ -4,7 +4,7 @@
 
 ## 🚀 **Live Demo**
 
-**🌐 Try it now:** [https://magnet-2-direct-bakhvx8pa-sh13y.vercel.app](https://magnet-2-direct-bakhvx8pa-sh13y.vercel.app)
+**🌐 Try it now:** [https://seedr.eu.org](https://seedr.eu.org)
 
 *No installation needed - just paste your magnet link and enjoy!* ✨
 
@@ -114,11 +114,12 @@ python simple_magnet2direct.py
 
 ## 🌐 **Live Deployment**
 
-The app is also deployed on **Vercel** for instant access:
-- **Live Demo:** [magnet-2-direct-bakhvx8pa-sh13y.vercel.app](https://magnet-2-direct-bakhvx8pa-sh13y.vercel.app)
-- **Global CDN** - Fast loading worldwide
-- **Automatic HTTPS** - Secure by default
-- **Serverless** - Scales automatically
+The app is deployed on **Vercel** with a custom domain for instant access:
+- **🌟 Live App:** [https://seedr.eu.org](https://seedr.eu.org)
+- **🚀 Global CDN** - Fast loading worldwide
+- **🔒 Automatic HTTPS** - Secure by default
+- **⚡ Serverless** - Scales automatically
+- **📱 Mobile Optimized** - Works perfectly on all devices
 
 ### **🚀 Deploy Your Own:**
 ```bash
@@ -126,8 +127,11 @@ The app is also deployed on **Vercel** for instant access:
 npm install -g vercel
 vercel login
 vercel --prod
+# Add your custom domain in Vercel dashboard
 ```
 
+> **💡 Domain Choice:** The `seedr.eu.org` domain perfectly represents what this tool does - it's all about making Seedr easier to use! Plus, it's short, memorable, and professional. 🎯
+
 ## 🎮 How to Use (For Dummies and Smart People Alike)
 
 ### **First Time Setup:**

+ 56 - 1
simple_magnet2direct.py

@@ -35,7 +35,7 @@ HTML_TEMPLATE = """
     <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
     <link rel="manifest" href="/site.webmanifest">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>🧲 Magnet2Direct</title>
+    <title>Magnet 2 Direct</title>
     <style>
         * {
             margin: 0;
@@ -534,6 +534,46 @@ HTML_TEMPLATE = """
                 padding: 15px;
             }
         }
+        
+        /* Footer */
+        .footer {
+            margin-top: 50px;
+            padding: 30px 20px;
+            text-align: center;
+            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
+            border-radius: 15px;
+            border: 1px solid #e2e8f0;
+            color: #6c757d;
+            font-size: 14px;
+            line-height: 1.6;
+        }
+        
+        .footer a {
+            color: #007bff;
+            text-decoration: none;
+            font-weight: 600;
+            transition: color 0.3s ease;
+        }
+        
+        .footer a:hover {
+            color: #0056b3;
+            text-decoration: underline;
+        }
+        
+        .footer .disclaimer {
+            font-size: 12px;
+            color: #868e96;
+            margin-top: 15px;
+            font-style: italic;
+        }
+        
+        @media (max-width: 768px) {
+            .footer {
+                margin-top: 30px;
+                padding: 20px 15px;
+                font-size: 13px;
+            }
+        }
     </style>
     
     <script>
@@ -881,6 +921,21 @@ HTML_TEMPLATE = """
         
         <div id="status" class="progress-container" style="display: none;"></div>
         <div id="result" class="result" style="display: none;"></div>
+        
+        <!-- Footer -->
+        <div class="footer">
+            <div>
+                🍿 <strong>Need magnet links?</strong> <a href="https://github.com/sh13y" target="_blank" rel="noopener">My</a> favorite spot: 
+                <a href="https://watchsomuch.to/" target="_blank" rel="noopener">WatchSoMuch</a> 
+                <br>
+                🎬 <em>"It's like Netflix, but with more... freedom!"</em> 😉
+            </div>
+            <div class="disclaimer">
+                ⚖️ For educational purposes only. We're just converting links here - what you download is between you and your conscience! 
+                <br>
+                Made with ❤️ (and lots of backpain) for fellow movie lovers who hate repetitive clicking.
+            </div>
+        </div>
     </div>
 </body>
 </html>