Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>ML Pipeline Pro | From Data to Deployment</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6e8efb, #a777e3); | |
| } | |
| .pipeline-step { | |
| transition: all 0.3s ease; | |
| } | |
| .pipeline-step:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0,0,0,0.1); | |
| } | |
| .code-block { | |
| font-family: 'Courier New', monospace; | |
| background-color: #2d3748; | |
| color: #f7fafc; | |
| } | |
| .animated-arrow { | |
| animation: bounce 2s infinite; | |
| } | |
| @keyframes bounce { | |
| 0%, 20%, 50%, 80%, 100% {transform: translateX(0);} | |
| 40% {transform: translateX(10px);} | |
| 60% {transform: translateX(5px);} | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 font-sans"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-lg"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <div class="flex justify-between items-center py-4"> | |
| <div class="flex items-center space-x-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-robot text-2xl text-purple-600 mr-2"></i> | |
| <span class="font-bold text-xl text-gray-800">ML Pipeline Pro</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#features" class="text-gray-700 hover:text-purple-600">Features</a> | |
| <a href="#pipeline" class="text-gray-700 hover:text-purple-600">Pipeline</a> | |
| <a href="#resources" class="text-gray-700 hover:text-purple-600">Resources</a> | |
| <a href="#contact" class="text-gray-700 hover:text-purple-600">Contact</a> | |
| <button class="bg-purple-600 text-white px-4 py-2 rounded-md hover:bg-purple-700 transition">Get Started</button> | |
| </div> | |
| <div class="md:hidden"> | |
| <button class="text-gray-700 focus:outline-none"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="gradient-bg text-white py-20"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Your Complete ML Pipeline Solution</h1> | |
| <p class="text-xl mb-8">From data collection to model deployment, we guide you through every step of the machine learning process with expert tools and resources.</p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-white text-purple-600 px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">Start Your Project</button> | |
| <button class="border-2 border-white text-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-purple-600 transition">Learn More</button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <img src="https://illustrations.popsy.co/amber/artificial-intelligence.svg" alt="ML Illustration" class="w-4/5"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-16 bg-white"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Powerful Features for Your ML Journey</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to build, train, and deploy machine learning models efficiently</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 p-8 rounded-xl shadow-md hover:shadow-xl transition pipeline-step"> | |
| <div class="text-purple-600 mb-4"> | |
| <i class="fas fa-database text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Data Management</h3> | |
| <p class="text-gray-600">Automated data collection, cleaning, and preprocessing tools to prepare your datasets for modeling.</p> | |
| </div> | |
| <div class="bg-gray-50 p-8 rounded-xl shadow-md hover:shadow-xl transition pipeline-step"> | |
| <div class="text-purple-600 mb-4"> | |
| <i class="fas fa-brain text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Model Training</h3> | |
| <p class="text-gray-600">Intuitive interfaces for model selection, hyperparameter tuning, and training with real-time monitoring.</p> | |
| </div> | |
| <div class="bg-gray-50 p-8 rounded-xl shadow-md hover:shadow-xl transition pipeline-step"> | |
| <div class="text-purple-600 mb-4"> | |
| <i class="fas fa-rocket text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Deployment</h3> | |
| <p class="text-gray-600">One-click deployment to various platforms with monitoring and scaling capabilities built-in.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pipeline Steps Section --> | |
| <section id="pipeline" class="py-16 bg-gray-50"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">The Complete ML Pipeline</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Follow our step-by-step guide to navigate through your machine learning project</p> | |
| </div> | |
| <!-- Pipeline Visualization --> | |
| <div class="relative"> | |
| <!-- Progress line --> | |
| <div class="hidden md:block absolute left-8 top-0 h-full w-1 bg-purple-200 ml-4"></div> | |
| <!-- Step 1 --> | |
| <div class="relative mb-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 1 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Data Collection</h3> | |
| <p class="text-gray-600 mb-4">Gather your raw data from various sources including databases, APIs, or files.</p> | |
| <div class="code-block p-4 rounded-md mb-4"> | |
| <code class="text-sm"> | |
| # Python example: Loading data from CSV<br> | |
| import pandas as pd<br> | |
| data = pd.read_csv('dataset.csv') | |
| </code> | |
| </div> | |
| <button class="text-purple-600 font-medium hover:underline">Explore Data Sources</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="relative mb-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 2 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Data Preprocessing</h3> | |
| <p class="text-gray-600 mb-4">Clean and transform your data to make it suitable for modeling.</p> | |
| <div class="code-block p-4 rounded-md mb-4"> | |
| <code class="text-sm"> | |
| # Handling missing values<br> | |
| data = data.fillna(data.mean())<br><br> | |
| # Feature scaling<br> | |
| from sklearn.preprocessing import StandardScaler<br> | |
| scaler = StandardScaler()<br> | |
| scaled_data = scaler.fit_transform(data) | |
| </code> | |
| </div> | |
| <button class="text-purple-600 font-medium hover:underline">Preprocessing Tools</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="relative mb-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 3 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Feature Engineering</h3> | |
| <p class="text-gray-600 mb-4">Create meaningful features that will help your model make better predictions.</p> | |
| <div class="code-block p-4 rounded-md mb-4"> | |
| <code class="text-sm"> | |
| # Creating interaction features<br> | |
| data['feature_interaction'] = data['feat1'] * data['feat2']<br><br> | |
| # One-hot encoding<br> | |
| data = pd.get_dummies(data, columns=['categorical_feature']) | |
| </code> | |
| </div> | |
| <button class="text-purple-600 font-medium hover:underline">Feature Techniques</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="relative mb-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 4 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Selection</h3> | |
| <p class="text-gray-600 mb-4">Choose the right algorithm for your problem type and data characteristics.</p> | |
| <div class="flex flex-wrap gap-4 mb-4"> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Linear Regression</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Random Forest</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Neural Networks</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">SVM</span> | |
| </div> | |
| <button class="text-purple-600 font-medium hover:underline">Algorithm Guide</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 5 --> | |
| <div class="relative mb-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 5 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Training</h3> | |
| <p class="text-gray-600 mb-4">Train your model on the prepared dataset and evaluate its performance.</p> | |
| <div class="code-block p-4 rounded-md mb-4"> | |
| <code class="text-sm"> | |
| # Splitting data<br> | |
| from sklearn.model_selection import train_test_split<br> | |
| X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)<br><br> | |
| # Training a model<br> | |
| from sklearn.ensemble import RandomForestClassifier<br> | |
| model = RandomForestClassifier()<br> | |
| model.fit(X_train, y_train) | |
| </code> | |
| </div> | |
| <button class="text-purple-600 font-medium hover:underline">Training Options</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 6 --> | |
| <div class="relative mb-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 6 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Evaluation</h3> | |
| <p class="text-gray-600 mb-4">Assess your model's performance using appropriate metrics.</p> | |
| <div class="code-block p-4 rounded-md mb-4"> | |
| <code class="text-sm"> | |
| # Evaluation metrics<br> | |
| from sklearn.metrics import accuracy_score, precision_score, recall_score<br> | |
| predictions = model.predict(X_test)<br><br> | |
| print("Accuracy:", accuracy_score(y_test, predictions))<br> | |
| print("Precision:", precision_score(y_test, predictions))<br> | |
| print("Recall:", recall_score(y_test, predictions)) | |
| </code> | |
| </div> | |
| <div class="flex items-center text-purple-600"> | |
| <span>View Evaluation Dashboard</span> | |
| <i class="fas fa-arrow-right ml-2 animated-arrow"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 7 --> | |
| <div class="relative"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10"> | |
| 7 | |
| </div> | |
| <div class="md:ml-8 w-full md:w-auto"> | |
| <div class="bg-white p-6 rounded-lg shadow-md pipeline-step"> | |
| <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Deployment</h3> | |
| <p class="text-gray-600 mb-4">Deploy your trained model to production for real-world use.</p> | |
| <div class="code-block p-4 rounded-md mb-4"> | |
| <code class="text-sm"> | |
| # Saving the model<br> | |
| import joblib<br> | |
| joblib.dump(model, 'model.pkl')<br><br> | |
| # Flask API example<br> | |
| from flask import Flask, request, jsonify<br> | |
| app = Flask(__name__)<br> | |
| @app.route('/predict', methods=['POST'])<br> | |
| def predict():<br> | |
| data = request.json<br> | |
| prediction = model.predict([data['features']])<br> | |
| return jsonify({'prediction': prediction.tolist()}) | |
| </code> | |
| </div> | |
| <button class="bg-purple-600 text-white px-4 py-2 rounded-md hover:bg-purple-700 transition">Deploy Now</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Resources Section --> | |
| <section id="resources" class="py-16 bg-white"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Learning Resources</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Expand your machine learning knowledge with our curated resources</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition pipeline-step"> | |
| <div class="h-48 bg-purple-100 flex items-center justify-center"> | |
| <i class="fas fa-book-open text-5xl text-purple-600"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">ML Fundamentals</h3> | |
| <p class="text-gray-600 mb-4">Learn the core concepts of machine learning with our beginner-friendly guide.</p> | |
| <a href="#" class="text-purple-600 font-medium hover:underline">Start Learning</a> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition pipeline-step"> | |
| <div class="h-48 bg-purple-100 flex items-center justify-center"> | |
| <i class="fas fa-laptop-code text-5xl text-purple-600"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">Hands-on Tutorials</h3> | |
| <p class="text-gray-600 mb-4">Step-by-step tutorials for real-world ML projects across different domains.</p> | |
| <a href="#" class="text-purple-600 font-medium hover:underline">Explore Tutorials</a> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition pipeline-step"> | |
| <div class="h-48 bg-purple-100 flex items-center justify-center"> | |
| <i class="fas fa-chart-line text-5xl text-purple-600"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">Advanced Techniques</h3> | |
| <p class="text-gray-600 mb-4">Dive deep into advanced ML concepts and cutting-edge research.</p> | |
| <a href="#" class="text-purple-600 font-medium hover:underline">Advance Your Skills</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="gradient-bg text-white py-20"> | |
| <div class="max-w-4xl mx-auto px-4 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Build Your ML Pipeline?</h2> | |
| <p class="text-xl mb-8">Join thousands of data scientists and ML engineers who are accelerating their workflows with ML Pipeline Pro.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-white text-purple-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition">Get Started for Free</button> | |
| <button class="border-2 border-white text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:text-purple-600 transition">Schedule a Demo</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-16 bg-white"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> | |
| <div> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-6">Get In Touch</h2> | |
| <p class="text-gray-600 mb-8">Have questions about our platform or need help with your ML project? Our team is here to help.</p> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="text-purple-600 mt-1 mr-4"> | |
| <i class="fas fa-envelope text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold text-gray-800">Email Us</h3> | |
| <p class="text-gray-600">support@mlpipelinepro.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="text-purple-600 mt-1 mr-4"> | |
| <i class="fas fa-comments text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold text-gray-800">Live Chat</h3> | |
| <p class="text-gray-600">Available 24/7 for immediate support</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="text-purple-600 mt-1 mr-4"> | |
| <i class="fas fa-map-marker-alt text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold text-gray-800">Our Office</h3> | |
| <p class="text-gray-600">123 ML Street, Tech City, TC 10001</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <form class="bg-gray-50 p-8 rounded-xl shadow-sm"> | |
| <div class="mb-6"> | |
| <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label> | |
| <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label> | |
| <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-purple-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-purple-700 transition">Send Message</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i class="fas fa-robot text-2xl text-purple-400 mr-2"></i> | |
| <span class="font-bold text-xl">ML Pipeline Pro</span> | |
| </div> | |
| <p class="text-gray-400">Your complete solution for machine learning from data to deployment.</p> | |
| <div class="flex space-x-4 mt-4"> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Product</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">API</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Resources</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Community</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Case Studies</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Company</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
| <p>© 2023 ML Pipeline Pro. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple script for smooth scrolling | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| // Mobile menu toggle would go here | |
| // This is a placeholder for actual implementation | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=kceager/ml-pipleline" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |