Files
company_site/company_site/public/templates/public/index.html
T
westfarnandCursor 30de0d2687 Improve agentic browsing readiness for aimloperations.com.
Add robots.txt, sitemap.xml, and llms.txt for crawlers and AI agents, fix accessibility tree gaps in forms and navigation, reduce layout shift on key pages, and document Lighthouse regression checks.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-02 06:30:37 -05:00

147 lines
7.8 KiB
HTML
Executable File

<!doctype html>
{% load static %}
<html lang="en"">
<head>
<title>AI/ML Operations, LLC</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="icon" type="image/xicon" href="{% static 'public/img/logo.png' %}">
<body>
<header>
<div class="page-header text-light" style="background-image: url({% static 'public/img/background_w_logo.png' %}); background-repeat: no-repeat; background-size: 100% 100%; background-attachment: fixed;" >
<div class="container">
<div class="row" style="text-align: center;">
<div style="height: 60vh; padding: 30vh">
<h1 > </h1>
<!-- <p>Taking AI and ML from concept to Production</p> -->
</div>
</div>
</div>
</div>
</header>
<section class="bg-light text-dark" >
<div class="container" style="text-align: center; height: 20vh; padding: 7vh">
<div class="row">
<h2><u>About Us</u></h2>
<p>At AI/ML Operations, we're are commited to bringing production ready AI and ML to workflows. We have over a decad of experience create both ML models as well as AI algorithms to solve some of the the most demanding problem spaces.</p>
</div>
</div>
</section>
<section class="bg-dark text-light" >
<div class="container text-center">
<h2><u>Services</u></h2>
<div class="row justify-content-start">
<div class="col-4">
<h3>ML Model Creation</h3>
<p>Unleash the power of data with our cutting-edge ML model creation services, tailored to your unique needs. From data preprocessing to model training and deployment, we streamline the process to unlock actionable insights.</p>
</div>
<div class="col-4">
<h3>Pipeline Optimization</h3>
<p>Boost efficiency and productivity with our pipeline optimization solutions. We fine-tune your workflows, automate repetitive tasks, and integrate advanced analytics to optimize your business processes for peak performance.</p>
</div>
<div class="col-4">
<h3>AI Algorithms for Sensors</h3>
<p>Harness the potential of sensor data with our advanced AI algorithms tailored for diverse applications. From real-time processing to post collection data analysis, our algorithms empower you to extract valuable insights, optimize processes, and drive innovation.</p>
</div>
<div class="col-4">
<h3>Web Design</h3>
<p>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.</p>
</div>
<div class="col-4">
<h3>File Hosting</h3>
<p>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.</p>
</div>
<div class="col-4">
<h3>App Virtualization</h3>
<p>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.</p>
</div>
</div>
</div>
</section>
<section class="bg-light text-dark" >
<div class="container" style="text-align: center; height: 20vh; padding: 7vh">
<div class="row">
<h2>Partners</h2>
<div class="col-12">
<img src="{% static 'public/img/ansys_logo.png' %}" alt="Ansys" height="100" />
</div>
</div>
</div>
</section>
<section class="bg-dark text-light">
<div class="container" style="padding-top: 1rem; padding-bottom: 1rem;">
<h2 >Contact Us</h2>
<form action="{% url 'contact' %}" method="post">
{% csrf_token %}
<div class="row">
{% if success %}
<div class="alert alert-success alert-dismissible fade show" role="alert">
<span class="alert-text"> We'll be in contact shortly!</span>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
{% endif %}
{% if errors %}
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<span class="alert-text">{{ errors }}</span>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
{% endif %}
<!-- <div class="col-md-6">
<p> something</p>
</div>
<div class="col-md-6">
-->
<div class="form-group col-6" style="padding-left:1rem">
<label for="legacy-contact-email">Your Email</label>
<input type="email" class="form-control" name="email" id="legacy-contact-email" placeholder="Your Email">
</div>
<div class="form-group col-6" style="padding-right:1rem">
<label for="legacy-contact-name">Your Name</label>
<input type="text" class="form-control" name="name" id="legacy-contact-name" placeholder="Your Name">
</div>
<div class="form-group col-12" style="padding:1rem">
<label for="legacy-contact-message">Your Message</label>
<textarea name="message" id="legacy-contact-message" class="form-control" rows="5" placeholder="Your message"></textarea>
</div>
<div class="form-group col-12">
{% if capchaForm %}
{{ capchaForm }}
{% endif %}
</div>
</div>
<input type="submit" class="btn btn-primary" value="Send">
</form>
</div>
</section>
<footer>
<div class="container">
<div class="row" style="padding-top: 1rem;">
<p> &copy; <script>document.write( new Date().getFullYear() );</script> AI/ML Operations, LLC. ALL RIGHTS RESERVED</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>