diff --git a/company_site/public/seo.py b/company_site/public/seo.py index aa4846a..52f0453 100644 --- a/company_site/public/seo.py +++ b/company_site/public/seo.py @@ -63,13 +63,6 @@ PUBLIC_PAGE_ENTRIES = ( "0.7", "Custom workstation and server builds optimized for AI and ML workloads.", ), - ( - "file_hosting", - "File Hosting", - "monthly", - "0.7", - "Managed file hosting and storage for teams that need reliable data access.", - ), ( "web_design", "Web Design and Hosting", @@ -104,7 +97,6 @@ SERVICE_URL_NAMES = frozenset({ "ai_sensor", "ai_education", "computers", - "file_hosting", "web_design", }) diff --git a/company_site/public/static/public/img/file_hosting/card-1.jpg b/company_site/public/static/public/img/file_hosting/card-1.jpg deleted file mode 100644 index 776cad0..0000000 Binary files a/company_site/public/static/public/img/file_hosting/card-1.jpg and /dev/null differ diff --git a/company_site/public/static/public/img/file_hosting/card-2.jpg b/company_site/public/static/public/img/file_hosting/card-2.jpg deleted file mode 100644 index 9b2c28f..0000000 Binary files a/company_site/public/static/public/img/file_hosting/card-2.jpg and /dev/null differ diff --git a/company_site/public/static/public/img/file_hosting/card-3.jpg b/company_site/public/static/public/img/file_hosting/card-3.jpg deleted file mode 100644 index 62c758f..0000000 Binary files a/company_site/public/static/public/img/file_hosting/card-3.jpg and /dev/null differ diff --git a/company_site/public/static/public/img/file_hosting_bg.jpg b/company_site/public/static/public/img/file_hosting_bg.jpg deleted file mode 100755 index e74a6a0..0000000 Binary files a/company_site/public/static/public/img/file_hosting_bg.jpg and /dev/null differ diff --git a/company_site/public/templates/base.html b/company_site/public/templates/base.html index 8843789..9419e19 100644 --- a/company_site/public/templates/base.html +++ b/company_site/public/templates/base.html @@ -69,7 +69,7 @@
  • Home
  • diff --git a/company_site/public/templates/public/file_hosting.html b/company_site/public/templates/public/file_hosting.html deleted file mode 100644 index 401fd3a..0000000 --- a/company_site/public/templates/public/file_hosting.html +++ /dev/null @@ -1,90 +0,0 @@ -{% extends "base.html" %} -{% load static %} - -{% block title %}File Hosting - AI ML Operations, LLC{% endblock %} -{% block meta_description %}Secure, scalable, and reliable file hosting with weekly backups by AI ML Operations, LLC. -Protect your data with our advanced storage solutions.{% endblock %} - -{% block content %} - - -
    -
    -

    File Hosting

    -

    Secure, Scalable, and Reliable File Storage with Weekly Backups

    -
    -
    - - -
    -
    -

    About Our File Hosting Service

    -

    - At AI ML Operations, we provide secure and scalable file hosting solutions tailored to your business needs. Our - platform ensures your data is always accessible, protected, and backed up with weekly backups for added peace of - mind. Whether you're storing critical business documents, media files, or large datasets, our file hosting service - is designed to meet your requirements with reliability and efficiency. -

    -
    -
    - - -
    -
    -

    What We Offer

    -
    -
    -
    Secure Storage
    -

    Your files are stored securely with advanced encryption protocols.

    -
    -
    -
    Weekly Backups
    -

    Automatic weekly backups to ensure your data is always safe.

    -
    -
    -
    Scalable Solutions
    -

    Easily scale your storage as your business grows.

    -
    -
    -
    -
    - - -
    -
    -

    Why Choose Us?

    -
    -
    - Data Security - Data Security -

    Advanced encryption and access controls to protect your files.

    -
    -
    - Reliability - Reliability -

    99.9% uptime guarantee for uninterrupted access to your files.

    -
    -
    - Easy Management - Easy Management -

    User-friendly interface for seamless file management.

    -
    -
    -
    -
    - - -
    -
    -

    Ready to Secure Your Files?

    -

    Contact us today to get started with our file hosting service. -

    - Get Started -
    -
    - -{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/index.html b/company_site/public/templates/public/index.html index 406e2cd..29aecb6 100755 --- a/company_site/public/templates/public/index.html +++ b/company_site/public/templates/public/index.html @@ -53,10 +53,6 @@

    Web Design

    Elevate your online presence with captivating web design that blends creativity with functionality. Our expert designers craft visually stunning websites that engage your audience and drive conversions, ensuring a seamless user experience across all devices.

    -
    -

    File Hosting

    -

    Securely store and share your files with ease using our reliable file hosting platform. With robust encryption and flexible access controls, you can confidently manage your data, collaborate seamlessly, and streamline your workflow.

    -

    App Virtualization

    Transform your software delivery with our app virtualization solutions, enabling seamless access to applications from any device, anywhere. Experience enhanced flexibility, scalability, and security as we optimize your IT infrastructure for the digital age.

    diff --git a/company_site/public/templates/public/new_index.html b/company_site/public/templates/public/new_index.html index a3e6a45..371b745 100644 --- a/company_site/public/templates/public/new_index.html +++ b/company_site/public/templates/public/new_index.html @@ -219,12 +219,6 @@

    Servers and workstations for compute, storage, and local inference workloads.

    - - File Hosting -

    Secure, scalable file hosting to store and share your data.

    -
    -
    diff --git a/company_site/public/urls.py b/company_site/public/urls.py index 124adee..0f4b4c4 100755 --- a/company_site/public/urls.py +++ b/company_site/public/urls.py @@ -1,4 +1,5 @@ from django.urls import path +from django.views.generic import RedirectView from . import seo, views @@ -12,7 +13,11 @@ urlpatterns = [ path("computer", views.computers, name="computers"), path("web_design", views.web_design, name="web_design"), path("ai_sensor", views.ai_sensor, name="ai_sensor"), - path("file_hosting", views.file_hosting, name="file_hosting"), + # Permanent redirect: product retired; keep URL for inbound links/search results. + path( + "file_hosting", + RedirectView.as_view(pattern_name="public_index", permanent=True), + ), path("bot_creation", views.bot, name="bot"), path("forward-deployed-ai", views.forward_deployed, name="forward_deployed"), path("ml_model", views.ml_model, name="ml_model"), diff --git a/company_site/public/views.py b/company_site/public/views.py index 4e7cb47..7f5df63 100755 --- a/company_site/public/views.py +++ b/company_site/public/views.py @@ -66,9 +66,6 @@ def web_design(request): def ai_sensor(request): return render(request, "public/ai_sensor.html", {}) -def file_hosting(request): - return render(request, "public/file_hosting.html", {}) - def bot(request): return render(request, "public/bot.html", {})