diff --git a/company_site/public/static/public/css/style.css b/company_site/public/static/public/css/style.css new file mode 100644 index 0000000..a17501f --- /dev/null +++ b/company_site/public/static/public/css/style.css @@ -0,0 +1,360 @@ +:root { + --bg-color: #0a0a0a; + --surface-color: #1a1a1a; + --primary-color: #00f3ff; + /* Neon Cyan */ + --secondary-color: #bc13fe; + /* Neon Purple */ + --text-color: #e0e0e0; + --text-muted: #a0a0a0; + --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + --transition-speed: 0.3s; +} + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + background-color: var(--bg-color); + color: var(--text-color); + font-family: var(--font-main); + line-height: 1.6; + overflow-x: hidden; +} + +a { + color: var(--primary-color); + text-decoration: none; + transition: color var(--transition-speed); +} + +a:hover { + color: var(--secondary-color); +} + +/* Navigation */ +nav { + background-color: rgba(10, 10, 10, 0.9); + backdrop-filter: blur(10px); + position: fixed; + top: 0; + width: 100%; + z-index: 1000; + padding: 1rem 2rem; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); +} + +.brand-logo { + font-size: 1.5rem; + font-weight: 700; + color: white; + text-transform: uppercase; + letter-spacing: 1px; +} + +.nav-links { + display: flex; + gap: 2rem; + list-style: none; +} + +.nav-links a { + color: var(--text-color); + font-weight: 500; + font-size: 0.9rem; + text-transform: uppercase; + letter-spacing: 0.5px; +} + +.nav-links a:hover { + color: var(--primary-color); +} + +/* Hero Section */ +.hero-section { + position: relative; + height: 100vh; + width: 100%; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} + +#hero-canvas { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 0; +} + +.hero-content { + position: relative; + z-index: 1; + text-align: center; + padding: 0 1rem; +} + +.hero-title { + font-size: 4rem; + font-weight: 800; + background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); + -webkit-background-clip: text; + background-clip: text; + color: transparent; + margin-bottom: 1rem; + text-shadow: 0 0 20px rgba(0, 243, 255, 0.3); +} + +.hero-subtitle { + font-size: 1.5rem; + color: var(--text-muted); + max-width: 600px; + margin: 0 auto; +} + +/* Sections */ +.section { + padding: 5rem 2rem; +} + +.container { + max-width: 1200px; + margin: 0 auto; +} + +.section-title { + font-size: 2.5rem; + font-weight: 700; + margin-bottom: 3rem; + text-align: center; + color: white; +} + +.section-title::after { + content: ''; + display: block; + width: 60px; + height: 4px; + background: var(--primary-color); + margin: 1rem auto 0; + border-radius: 2px; +} + +/* Cards */ +.card-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; +} + +.card { + background: var(--surface-color); + border: 1px solid rgba(255, 255, 255, 0.05); + border-radius: 12px; + padding: 2rem; + transition: transform var(--transition-speed), box-shadow var(--transition-speed); +} + +.card:hover { + transform: translateY(-5px); + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); + border-color: var(--primary-color); +} + +.card-title { + font-size: 1.25rem; + font-weight: 600; + margin-bottom: 1rem; + color: white; + display: block; +} + +.card-text { + color: var(--text-muted); + font-size: 0.95rem; +} + +/* Footer */ +.footer { + background: var(--surface-color); + padding: 3rem 2rem; + text-align: center; + border-top: 1px solid rgba(255, 255, 255, 0.05); +} + +.footer-text { + color: var(--text-muted); + font-size: 0.9rem; +} + +/* Mobile Nav */ +.mobile-menu-btn { + display: none; + background: none; + border: none; + color: white; + font-size: 1.5rem; + cursor: pointer; +} + +@media (max-width: 768px) { + .hero-title { + font-size: 2.5rem; + } + + .nav-links { + display: none; + flex-direction: column; + position: absolute; + top: 100%; + left: 0; + width: 100%; + background-color: rgba(10, 10, 10, 0.95); + backdrop-filter: blur(10px); + padding: 1rem; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + } + + .nav-links.active { + display: flex; + } + + .nav-links li { + margin: 1rem 0; + text-align: center; + } + + .mobile-menu-btn { + display: block; + } + + /* Mobile Dropdown adjustments */ + .dropdown-content { + position: static; + background: transparent; + box-shadow: none; + border: none; + min-width: auto; + padding-top: 0.5rem; + } + + .dropdown-content a { + padding: 8px; + font-size: 0.85rem; + color: var(--text-muted); + } +} + +/* Forms */ +.form-group { + margin-bottom: 1.5rem; +} + +.form-control { + width: 100%; + padding: 1rem; + background: var(--bg-color); + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 8px; + color: white; + font-family: var(--font-main); + font-size: 1rem; + transition: border-color var(--transition-speed); +} + +.form-control:focus { + outline: none; + border-color: var(--primary-color); +} + +.btn { + display: inline-block; + padding: 1rem 2rem; + background: var(--primary-color); + color: black; + font-weight: 700; + border: none; + border-radius: 30px; + cursor: pointer; + text-transform: uppercase; + transition: transform var(--transition-speed), box-shadow var(--transition-speed); +} + +.btn:hover { + transform: translateY(-2px); + box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3); +} + +.alert { + padding: 1rem; + border-radius: 8px; + margin-bottom: 1rem; +} + +.alert-success { + background: rgba(0, 255, 0, 0.1); + border: 1px solid rgba(0, 255, 0, 0.3); + color: #00ff00; +} + +.alert-danger { + background: rgba(255, 0, 0, 0.1); + border: 1px solid rgba(255, 0, 0, 0.3); + color: #ff0000; +} + +/* Dropdown */ +.dropdown { + position: relative; + display: inline-block; +} + +.dropdown-content { + display: none; + position: absolute; + background-color: var(--surface-color); + min-width: 200px; + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); + z-index: 1001; + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 8px; + top: 100%; + left: 0; + padding: 0.5rem 0; +} + +.dropdown-content li { + list-style: none; +} + +.dropdown-content a { + color: var(--text-color); + padding: 12px 16px; + text-decoration: none; + display: block; + transition: background-color var(--transition-speed); +} + +.dropdown-content a:hover { + background-color: rgba(255, 255, 255, 0.05); + color: var(--primary-color); +} + +.dropdown:hover .dropdown-content { + display: block; +} + +.dropdown>a::after { + content: ' ▼'; + font-size: 0.7em; + margin-left: 5px; +} \ No newline at end of file diff --git a/company_site/public/static/public/js/animation.js b/company_site/public/static/public/js/animation.js new file mode 100644 index 0000000..e7f6e44 --- /dev/null +++ b/company_site/public/static/public/js/animation.js @@ -0,0 +1,111 @@ +const canvas = document.getElementById('hero-canvas'); +const ctx = canvas.getContext('2d'); + +let width, height; +let particles = []; + +// Configuration +const particleCount = 100; +const connectionDistance = 150; +const mouseDistance = 200; + +// Resize handling +function resize() { + width = canvas.width = window.innerWidth; + height = canvas.height = window.innerHeight; +} + +window.addEventListener('resize', resize); +resize(); + +// Mouse tracking +const mouse = { x: null, y: null }; +window.addEventListener('mousemove', (e) => { + mouse.x = e.clientX; + mouse.y = e.clientY; +}); +window.addEventListener('mouseleave', () => { + mouse.x = null; + mouse.y = null; +}); + +// Particle class +class Particle { + constructor() { + this.x = Math.random() * width; + this.y = Math.random() * height; + this.vx = (Math.random() - 0.5) * 0.5; + this.vy = (Math.random() - 0.5) * 0.5; + this.size = Math.random() * 2 + 1; + this.color = Math.random() > 0.5 ? '#00f3ff' : '#bc13fe'; // Cyan or Purple + } + + update() { + this.x += this.vx; + this.y += this.vy; + + // Bounce off edges + if (this.x < 0 || this.x > width) this.vx *= -1; + if (this.y < 0 || this.y > height) this.vy *= -1; + + // Mouse interaction + if (mouse.x != null) { + const dx = mouse.x - this.x; + const dy = mouse.y - this.y; + const distance = Math.sqrt(dx * dx + dy * dy); + if (distance < mouseDistance) { + const forceDirectionX = dx / distance; + const forceDirectionY = dy / distance; + const force = (mouseDistance - distance) / mouseDistance; + const directionX = forceDirectionX * force * 0.5; + const directionY = forceDirectionY * force * 0.5; + this.vx += directionX; + this.vy += directionY; + } + } + } + + draw() { + ctx.beginPath(); + ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2); + ctx.fillStyle = this.color; + ctx.fill(); + } +} + +// Initialize particles +for (let i = 0; i < particleCount; i++) { + particles.push(new Particle()); +} + +// Animation loop +function animate() { + ctx.clearRect(0, 0, width, height); + + particles.forEach(particle => { + particle.update(); + particle.draw(); + }); + + // Draw connections + for (let i = 0; i < particles.length; i++) { + for (let j = i; j < particles.length; j++) { + const dx = particles[i].x - particles[j].x; + const dy = particles[i].y - particles[j].y; + const distance = Math.sqrt(dx * dx + dy * dy); + + if (distance < connectionDistance) { + ctx.beginPath(); + ctx.strokeStyle = `rgba(255, 255, 255, ${1 - distance / connectionDistance})`; + ctx.lineWidth = 0.5; + ctx.moveTo(particles[i].x, particles[i].y); + ctx.lineTo(particles[j].x, particles[j].y); + ctx.stroke(); + } + } + } + + requestAnimationFrame(animate); +} + +animate(); diff --git a/company_site/public/templates/base.html b/company_site/public/templates/base.html index 7a79f04..06fc6b1 100644 --- a/company_site/public/templates/base.html +++ b/company_site/public/templates/base.html @@ -1,194 +1,76 @@ {% load static %} + AI ML Operations, LLC - - - - - - + + + + + + - - + + - - - - - +
{% block content %} {% endblock %} -
- - - - - + \ No newline at end of file diff --git a/company_site/public/templates/public/ai_education.html b/company_site/public/templates/public/ai_education.html index 16e5b42..c299f2c 100644 --- a/company_site/public/templates/public/ai_education.html +++ b/company_site/public/templates/public/ai_education.html @@ -1,98 +1,86 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/education_bg.jpg' %}) {% endblock %} {% block content %} -
-

AI Education

-

Empowering Businesses with AI Knowledge

+
+
+

AI Education

+

Empowering Businesses with AI Knowledge

+
- -
-
-

About AI Education

-

- At AI ML Operations, we believe that understanding AI is the first step toward leveraging its power. Our AI Education service is designed to equip businesses with the knowledge and skills needed to integrate AI into their workflows effectively. We offer tailored courses, hands-on workshops, and ongoing support to ensure your team is confident and capable in using AI technologies. -

-
+ +
+
+

About AI Education

+

+ At AI ML Operations, we believe that understanding AI is the first step toward leveraging its power. Our AI + Education service is designed to equip businesses with the knowledge and skills needed to integrate AI into their + workflows effectively. We offer tailored courses, hands-on workshops, and ongoing support to ensure your team is + confident and capable in using AI technologies. +

+
- -
-
-

What We Offer

-
-
- school -
Custom Courses
-

Tailored AI courses designed to meet your business needs and goals.

-
+ +
+
+

What We Offer

+
+
+
Custom Courses
+

Tailored AI courses designed to meet your business needs and goals.

-
-
- work -
Hands-On Workshops
-

Interactive sessions to apply AI concepts in real-world scenarios.

-
+
+
Hands-On Workshops
+

Interactive sessions to apply AI concepts in real-world scenarios.

-
-
- support -
Ongoing Support
-

Continuous learning and support to keep your team up-to-date.

-
+
+
Ongoing Support
+

Continuous learning and support to keep your team up-to-date.

+
- -
-
-

Course Highlights

-
-
-
- AI Fundamentals -
-
- AI Fundamentals -

Learn the basics of AI, including machine learning, neural networks, and data preprocessing.

-
-
+ +
+
+

Course Highlights

+
+
+ AI Fundamentals + AI Fundamentals +

Learn the basics of AI, including machine learning, neural networks, and data + preprocessing.

-
-
-
- AI for Business -
-
- AI for Business -

Discover how AI can optimize operations, improve decision-making, and drive innovation.

-
-
+
+ AI for Business + AI for Business +

Discover how AI can optimize operations, improve decision-making, and drive innovation.

-
-
-
- Advanced AI Techniques -
-
- Advanced AI Techniques -

Dive deep into advanced topics like deep learning, natural language processing, and computer vision.

-
-
+
+ Advanced AI Techniques + Advanced AI Techniques +

Dive deep into advanced topics like deep learning, natural language processing, and + computer vision.

+
- -
-
-

Ready to Transform Your Business?

-

Contact us today to schedule your AI Education sessions.

- Get Started -
+ +
+
+

Ready to Transform Your Business?

+

Contact us today to schedule your AI Education sessions.

+ Get + Started
+
{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/ai_sensor.html b/company_site/public/templates/public/ai_sensor.html index 7078f28..fd60083 100644 --- a/company_site/public/templates/public/ai_sensor.html +++ b/company_site/public/templates/public/ai_sensor.html @@ -1,109 +1,88 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/ai_sensor_bg.jpg' %}) {% endblock %} {% block content %} -
-

AI Sensor Algorithms

-

Enhancing Sensor Performance with Advanced AI

+
+
+

AI Sensor Algorithms

+

Enhancing Sensor Performance with Advanced AI

+
- -
-
-

About AI Sensor Algorithms

-

- At AI ML Operations, we specialize in developing cutting-edge AI algorithms to enhance the performance of on-board sensors. By leveraging techniques such as Natural Language Processing (NLP), Pattern Recognition, Machine Vision, and more, we enable sensors to deliver smarter, faster, and more accurate results. Our solutions are designed to integrate seamlessly into your systems, providing real-time insights and improving decision-making capabilities. -

-
+ +
+
+

About AI Sensor Algorithms

+

+ At AI ML Operations, we specialize in developing cutting-edge AI algorithms to enhance the performance of on-board + sensors. By leveraging techniques such as Natural Language Processing (NLP), Pattern Recognition, Machine Vision, + and more, we enable sensors to deliver smarter, faster, and more accurate results. Our solutions are designed to + integrate seamlessly into your systems, providing real-time insights and improving decision-making capabilities. +

+
- -
-
-

What We Offer

-
-
- visibility -
Machine Vision
-

Enhance visual data processing with advanced machine vision algorithms.

-
+ +
+
+

What We Offer

+
+
+
Machine Vision
+

Enhance visual data processing with advanced machine vision algorithms.

-
-
- pattern -
Pattern Recognition
-

Identify and analyze patterns in sensor data for improved accuracy.

-
+
+
Pattern Recognition
+

Identify and analyze patterns in sensor data for improved accuracy.

-
-
- translate -
Natural Language Processing
-

Enable sensors to interpret and respond to human language inputs.

-
+
+
Natural Language Processing
+

Enable sensors to interpret and respond to human language inputs.

+
- -
-
-

Applications

-
-
-
- Industrial Automation -
-
- Industrial Automation -

Optimize manufacturing processes with AI-enhanced sensors.

-
-
+ +
+
+

Applications

+
+
+ Industrial Automation + Industrial Automation +

Optimize manufacturing processes with AI-enhanced sensors.

-
-
-
- Autonomous Vehicles -
-
- Autonomous Vehicles -

Improve navigation and safety with advanced sensor algorithms.

-
-
+
+ Autonomous Vehicles + Autonomous Vehicles +

Improve navigation and safety with advanced sensor algorithms.

-
-
-
- Healthcare Monitoring -
-
- Healthcare Monitoring -

Enable real-time health tracking with AI-powered sensors.

-
-
+
+ Healthcare Monitoring + Healthcare Monitoring +

Enable real-time health tracking with AI-powered sensors.

-
-
-
- Smart Home Devices -
-
- Smart Home Devices -

Enhance user experiences with intelligent sensor integrations.

-
-
+
+ Smart Home Devices + Smart Home Devices +

Enhance user experiences with intelligent sensor integrations.

+
- -
-
-

Ready to Enhance Your Sensors?

-

Contact us today to discuss your AI sensor needs.

- Get Started -
+ +
+
+

Ready to Enhance Your Sensors?

+

Contact us today to discuss your AI sensor needs.

+ Get Started
+
{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/bot.html b/company_site/public/templates/public/bot.html index fa14abc..f925c62 100644 --- a/company_site/public/templates/public/bot.html +++ b/company_site/public/templates/public/bot.html @@ -1,98 +1,82 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/bot_bg.jpg' %}) {% endblock %} {% block content %} -
-

Agentic Bots

-

Intelligent Bots for Automation and Engagement

+
+
+

Agentic Bots

+

Intelligent Bots for Automation and Engagement

+
- -
-
-

About Agentic Bots

-

- At AI ML Operations, we create intelligent, agentic bots designed to automate tasks, engage users, and streamline workflows. Our bots currently integrate seamlessly with Telegram, but we can customize them to suit your specific platform or needs. Whether you need a bot for customer support, data collection, or process automation, we deliver solutions that are reliable, scalable, and easy to use. -

-
+ +
+
+

About Agentic Bots

+

+ At AI ML Operations, we create intelligent, agentic bots designed to automate tasks, engage users, and streamline + workflows. Our bots currently integrate seamlessly with Telegram, but we can customize them to suit your specific + platform or needs. Whether you need a bot for customer support, data collection, or process automation, we deliver + solutions that are reliable, scalable, and easy to use. +

+
- -
-
-

What We Offer

-
-
- smart_toy -
Custom Bot Development
-

Tailored bots designed to meet your unique business requirements.

-
+ +
+
+

What We Offer

+
+
+
Custom Bot Development
+

Tailored bots designed to meet your unique business requirements.

-
-
- integration_instructions -
Platform Integration
-

Bots that integrate with Telegram or other platforms of your choice.

-
+
+
Platform Integration
+

Bots that integrate with Telegram or other platforms of your choice.

-
-
- settings -
Hosting & Maintenance
-

We host and maintain your bots, ensuring they run smoothly 24/7.

-
+
+
Hosting & Maintenance
+

We host and maintain your bots, ensuring they run smoothly 24/7.

+
- -
-
-

Applications

-
-
-
- Customer Support -
-
- Customer Support -

Automate responses and provide instant support to your customers.

-
-
+ +
+
+

Applications

+
+
+ Customer Support + Customer Support +

Automate responses and provide instant support to your customers.

-
-
-
- Data Collection -
-
- Data Collection -

Gather and organize data efficiently using intelligent bots.

-
-
+
+ Data Collection + Data Collection +

Gather and organize data efficiently using intelligent bots.

-
-
-
- Process Automation -
-
- Process Automation -

Streamline workflows and reduce manual effort with automated bots.

-
-
+
+ Process Automation + Process Automation +

Streamline workflows and reduce manual effort with automated bots.

+
- -
-
-

Ready to Automate?

-

Contact us today to create your custom agentic bot.

- Get Started -
+ +
+
+

Ready to Automate?

+

Contact us today to create your custom agentic bot.

+ Get Started
+
{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/chat.html b/company_site/public/templates/public/chat.html index b72dfb9..37dde62 100644 --- a/company_site/public/templates/public/chat.html +++ b/company_site/public/templates/public/chat.html @@ -1,96 +1,70 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/bg4.jpeg' %}) {% endblock %} {% block content %} - -
-

Chat

-

Your Private, Secure, and Powerful LLM Solution

+ +
+
+

Chat

+

Your Private, Secure, and Powerful LLM Solution

+
- -
-
-

What is Chat?

-

- Chat is a closed-source Large Language Model (LLM) designed specifically for small and medium businesses. Hosted locally, Chat ensures that all your data remains private and secure. With Chat, your data is never sold or accessed by third parties—ever. You retain full control over your accounts and data. Chat also includes advanced file analysis capabilities, making it a versatile tool for your business needs. -

-
+ +
+
+

What is Chat?

+

+ Chat is a closed-source Large Language Model (LLM) designed specifically for small and medium businesses. Hosted + locally, Chat ensures that all your data remains private and secure. With Chat, your data is never sold or + accessed by third parties—ever. You retain full control over your accounts and data. Chat also includes advanced + file analysis capabilities, making it a versatile tool for your business needs. +

+
- -
-
-

Key Features

-
- -
- lock -
Local Hosting
-

All data is stored and processed locally, ensuring maximum privacy and security.

-
- - - - - - + +
+
+

Key Features

+
+
+
Local Hosting
+

All data is stored and processed locally, ensuring maximum privacy and security.

-
-
- security -
No Third-Party Access
-

Your data is never sold or accessed by third parties for any reason.

-
+
+
No Third-Party Access
+

Your data is never sold or accessed by third parties for any reason.

-
-
- folder -
File Analysis
-

Analyze files directly within the platform for seamless integration into your workflows.

-
+
+
File Analysis
+

Analyze files directly within the platform for seamless integration into your workflows. +

+
- -
-
-

Pricing

- -
-
- + +
+
+

Pricing

+ +
+
+
+
+

$10

+

per user per month

+

Start with a free trial to experience the power of Chat.

+ Inquire Now
-
-
-

$10

-

per user per month

-

Start with a free trial to experience the power of Chat.

- Inquire Now -
-
-
+
- - - +
{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/computers.html b/company_site/public/templates/public/computers.html index c733a24..30ac4e6 100644 --- a/company_site/public/templates/public/computers.html +++ b/company_site/public/templates/public/computers.html @@ -1,109 +1,89 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/computer_bg.jpg' %}) {% endblock %} {% block content %} -
-

Computer Solutions

-

From Gaming PCs to AI Servers – We Build, Deploy, and Maintain

+
+
+

Computer Solutions

+

From Gaming PCs to AI Servers – We Build, Deploy, and Maintain

+
- -
-
-

About Our Computer Solutions

-

- At AI ML Operations, we specialize in procuring, building, deploying, and maintaining computers tailored to your specific needs. Whether you're a gamer, a creative professional, or a business requiring high-performance workstations or AI servers, we deliver reliable, scalable, and efficient solutions. Our end-to-end service ensures your systems are optimized for performance and longevity. -

-
+ +
+
+

About Our Computer Solutions

+

+ At AI ML Operations, we specialize in procuring, building, deploying, and maintaining computers tailored to your + specific needs. Whether you're a gamer, a creative professional, or a business requiring high-performance + workstations or AI servers, we deliver reliable, scalable, and efficient solutions. Our end-to-end service ensures + your systems are optimized for performance and longevity. +

+
- -
-
-

What We Offer

-
-
- build -
Custom Builds
-

We design and build computers tailored to your specific requirements, from gaming PCs to AI servers.

-
+ +
+
+

What We Offer

+
+
+
Custom Builds
+

We design and build computers tailored to your specific requirements, from gaming PCs to AI + servers.

-
-
- cloud_upload -
Deployment
-

Seamless deployment of systems, ensuring they are ready for immediate use.

-
+
+
Deployment
+

Seamless deployment of systems, ensuring they are ready for immediate use.

-
-
- settings -
Maintenance
-

Ongoing support and maintenance to keep your systems running smoothly.

-
+
+
Maintenance
+

Ongoing support and maintenance to keep your systems running smoothly.

+
- -
-
-

Our Solutions

-
-
-
- Gaming PCs -
-
- Gaming PCs -

High-performance gaming rigs built for the latest games and VR experiences.

-
-
+ +
+
+

Our Solutions

+
+
+ Gaming PCs + Gaming PCs +

High-performance gaming rigs built for the latest games and VR experiences.

-
-
-
- Workstations -
-
- Workstations -

Powerful workstations for creative professionals, engineers, and developers.

-
-
+
+ Workstations + Workstations +

Powerful workstations for creative professionals, engineers, and developers.

-
-
-
- Storage Servers -
-
- Storage Servers -

Scalable storage solutions for data-intensive applications and backups.

-
-
+
+ Storage Servers + Storage Servers +

Scalable storage solutions for data-intensive applications and backups.

-
-
-
- AI Servers -
-
- AI Servers -

High-performance servers optimized for AI and machine learning workloads.

-
-
+
+ AI Servers + AI Servers +

High-performance servers optimized for AI and machine learning workloads.

+
- -
-
-

Ready to Upgrade Your Systems?

-

Contact us today to discuss your computer needs.

- Get Started -
+ +
+
+

Ready to Upgrade Your Systems?

+

Contact us today to discuss your computer needs.

+ Get Started
+
{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/contact.html b/company_site/public/templates/public/contact.html index 69e4b8b..7c6be22 100644 --- a/company_site/public/templates/public/contact.html +++ b/company_site/public/templates/public/contact.html @@ -1,126 +1,85 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/bg2.jpeg' %}) {% endblock %} {% block content %} - -
-

Get in Touch

-
+ +
+
+

Get in Touch

+

We'd love to hear from you.

+
+
- -
-
-
+ +
+
+
+ + +
{% if success %} - - {% endif %} - {% if errors %} - - {% endif %} -
-
-

Send Us a Message

-
- {% csrf_token %} -
-
- -
-
- -
- -
- -
-
- -
- -
- {% if capchaForm %} - {{ capchaForm }} - {% endif %} -
-
- - -
-
-
-
-
- -
-
-
Contact Information
-
    - -
  • - phone -

    +1 (330) 402-2675

    -
  • -
  • - email -

    ryan@aimloperations.com

    -
  • -
- - -
-
+ + {% endif %} + {% if errors %} + + {% endif %} - - + +
+ +
+ +
+ +
+ +
+ {% if capchaForm %} + {{ capchaForm }} + {% endif %} +
+ + + +
+ + +
+
+
Contact Information
+
    +
  • + 📞 +

    +1 (330) 402-2675

    +
  • +
  • + ✉️ +

    ryan@aimloperations.com

    +
  • +
+
+
+
- {% endblock %} \ No newline at end of file +
+
+{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/file_hosting.html b/company_site/public/templates/public/file_hosting.html index acf4414..ee017e5 100644 --- a/company_site/public/templates/public/file_hosting.html +++ b/company_site/public/templates/public/file_hosting.html @@ -1,100 +1,85 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/file_hosting_bg.jpg' %}) {% endblock %} {% block content %} -
-

File Hosting

-

Secure, Scalable, and Reliable File Storage with Weekly Backups

+
+
+

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. -

-
+ +
+
+

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

-
-
- cloud -
Secure Storage
-

Your files are stored securely with advanced encryption protocols.

-
+ +
+
+

What We Offer

+
+
+
Secure Storage
+

Your files are stored securely with advanced encryption protocols.

-
-
- backup -
Weekly Backups
-

Automatic weekly backups to ensure your data is always safe.

-
+
+
Weekly Backups
+

Automatic weekly backups to ensure your data is always safe.

-
-
- storage -
Scalable Solutions
-

Easily scale your storage as your business grows.

-
+
+
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.

-
-
+ +
+
+

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.

-
-
+
+ Reliability + Reliability +

99.9% uptime guarantee for uninterrupted access to your files.

-
-
-
- Easy Management -
-
- Easy Management -

User-friendly interface for seamless file management.

-
-
+
+ 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 -
+ +
+
+

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/ml_model.html b/company_site/public/templates/public/ml_model.html index 643adda..3588b2c 100644 --- a/company_site/public/templates/public/ml_model.html +++ b/company_site/public/templates/public/ml_model.html @@ -1,98 +1,82 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/ml_model_bg.jpg' %}) {% endblock %} {% block content %} -
-

ML Model Creation

-

Tailored Machine Learning Models for Any Problem Set

+
+
+

ML Model Creation

+

Tailored Machine Learning Models for Any Problem Set

+
- -
-
-

About ML Model Creation

-

- At AI ML Operations, we specialize in creating custom machine learning models to solve complex problems across industries. With extensive expertise in supervised, unsupervised, and reinforcement learning, we design models that deliver accurate, scalable, and actionable insights. Whether you need predictive analytics, pattern recognition, or decision-making systems, we provide end-to-end solutions tailored to your needs. -

-
+ +
+
+

About ML Model Creation

+

+ At AI ML Operations, we specialize in creating custom machine learning models to solve complex problems across + industries. With extensive expertise in supervised, unsupervised, and reinforcement learning, we design models + that deliver accurate, scalable, and actionable insights. Whether you need predictive analytics, pattern + recognition, or decision-making systems, we provide end-to-end solutions tailored to your needs. +

+
- -
-
-

What We Offer

-
-
- supervised_user_circle -
Supervised Learning
-

Create models for classification, regression, and prediction tasks.

-
+ +
+
+

What We Offer

+
+
+
Supervised Learning
+

Create models for classification, regression, and prediction tasks.

-
-
- explore -
Unsupervised Learning
-

Discover patterns and insights from unlabeled data.

-
+
+
Unsupervised Learning
+

Discover patterns and insights from unlabeled data.

-
-
- trending_up -
Reinforcement Learning
-

Develop systems that learn and adapt through interaction.

-
+
+
Reinforcement Learning
+

Develop systems that learn and adapt through interaction.

+
- -
-
-

Applications

-
-
-
- Predictive Analytics -
-
- Predictive Analytics -

Forecast trends and outcomes with high accuracy.

-
-
+ +
+
+

Applications

+
+
+ Predictive Analytics + Predictive Analytics +

Forecast trends and outcomes with high accuracy.

-
-
-
- Fraud Detection -
-
- Fraud Detection -

Identify and prevent fraudulent activities in real-time.

-
-
+
+ Fraud Detection + Fraud Detection +

Identify and prevent fraudulent activities in real-time.

-
-
-
- Recommendation Systems -
-
- Recommendation Systems -

Personalize user experiences with intelligent recommendations.

-
-
+
+ Recommendation Systems + Recommendation Systems +

Personalize user experiences with intelligent recommendations.

+
- -
-
-

Ready to Solve Your Problem?

-

Contact us today to create your custom ML model.

- Get Started -
+ +
+
+

Ready to Solve Your Problem?

+

Contact us today to create your custom ML model.

+ Get Started
+
{% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/new_index.html b/company_site/public/templates/public/new_index.html index 3729a2a..2033834 100644 --- a/company_site/public/templates/public/new_index.html +++ b/company_site/public/templates/public/new_index.html @@ -2,166 +2,84 @@ {% load static %} {% block content %} - -
- - + +
+ +
+

AI ML Operations

+

Taking concepts to production with intelligent solutions.

+
+
+ + +
+
+

About Us

+

+ At AI/ML Operations, we are dedicated to delivering production-ready AI and ML solutions that seamlessly integrate + into your workflows. With over a decade of experience, we specialize in crafting cutting-edge machine learning + models and AI algorithms to tackle the most complex and demanding challenges across various industries. +

+
+
+ + +
+ - -
-
-

About Us

-

- At AI/ML Operations, we are dedicated to delivering production-ready AI and ML solutions that seamlessly integrate into your workflows. With over a decade of experience, we specialize in crafting cutting-edge machine learning models and AI algorithms to tackle the most complex and demanding challenges across various industries. -

-
-
- - -
-
-

Our Services

-
-
-
- AI Sensor Algorithms -

Develop intelligent algorithms that enhance sensor data processing, enabling real-time insights and decision-making for IoT and industrial applications.

-
-
-
-
-
-
- AI Education -

Stay ahead of the AI technology curve with our AI Education classes. Classes are tailored to the audience familiarity with AI. Held in-person or virtual.

-
-
-
-
-
-
- Bot Creation -

Build agentic intelligent bots for workflow automation, customer support, and data collection for enhancing productivity and user experience.

-
-
-
-
-
-
- Chat -

Chat is a closed-source Large Language Model (LLM) designed specifically for small and medium businesses.

-
-
-
-
-
-
- Computer Builds -

Wether you're looking for a server for storage or compute or a workstation computer, we will build your next system for you.

-
-
-
-
-
-
- File Hosting -

Secure and scalable file hosting solutions to store, manage, and share your data with ease and confidence.

-
-
-
-
-
-
- ML Model Creation -

Design and deploy custom machine learning models tailored to your business needs, ensuring accuracy, scalability, and performance.

-
-
-
- -
-
-
- Web Design and Hosting -

Create visually stunning and highly functional websites, coupled with reliable hosting solutions to ensure your online presence is always at its best.

-
-
-
- - - -
-
- - - + {% endblock %} \ No newline at end of file diff --git a/company_site/public/templates/public/web_design.html b/company_site/public/templates/public/web_design.html index acf36c2..0534815 100644 --- a/company_site/public/templates/public/web_design.html +++ b/company_site/public/templates/public/web_design.html @@ -1,207 +1,165 @@ {% extends "base.html" %} {% load static %} -{% block path %} url({% static 'public/img/web_design_bg.jpg' %}) {% endblock %} {% block content %} - -
-

Web Design & Hosting

-

Crafting Beautiful, Functional Websites with Reliable Hosting

-
+ +
+
+

Web Design & Hosting

+

Crafting Beautiful, Functional Websites with Reliable Hosting

+
+
- -
-
-

About Our Web Design & Hosting Service

-

- At AI ML Operations, we specialize in creating visually stunning, highly functional websites tailored to your business needs. From design to deployment, we handle every aspect of your online presence. Our reliable hosting solutions ensure your website is always fast, secure, and accessible. Whether you need a simple portfolio site or a complex e-commerce platform, we’ve got you covered. -

+ +
+
+

About Our Web Design & Hosting Service

+

+ At AI ML Operations, we specialize in creating visually stunning, highly functional websites tailored to your + business needs. From design to deployment, we handle every aspect of your online presence. Our reliable hosting + solutions ensure your website is always fast, secure, and accessible. Whether you need a simple portfolio site or + a complex e-commerce platform, we’ve got you covered. +

+
+
+ + +
+
+

What We Offer

+
+
+
Custom Web Design
+

Tailored designs that reflect your brand and engage your audience.

+
+
+
Reliable Hosting
+

Fast, secure, and scalable hosting solutions for your website.

+
+
+
Ongoing Support
+

Continuous maintenance and support to keep your site running smoothly.

+
+
- -
-
-

What We Offer

-
-
- design_services -
Custom Web Design
-

Tailored designs that reflect your brand and engage your audience.

-
-
-
-
- dns -
Reliable Hosting
-

Fast, secure, and scalable hosting solutions for your website.

-
-
-
-
- settings -
Ongoing Support
-

Continuous maintenance and support to keep your site running smoothly.

-
-
+ +
+
+

Our Services

+
+
+ Custom Web Design + Custom Web Design +

Unique, responsive designs tailored to your brand and audience.

+
+
+ E-Commerce Solutions + E-Commerce Solutions +

Build and optimize online stores for seamless shopping experiences.

+
+
+ Website Hosting + Website Hosting +

Secure, high-performance hosting with 99.9% uptime guarantee.

+
+
+ SEO Optimization + SEO Optimization +

Improve your website's visibility and ranking on search engines.

+
+
+ Maintenance & Support + Maintenance & Support +

Regular updates, backups, and troubleshooting to keep your site running smoothly.

+
+
- -
-
-

Our Services

-
-
-
- Custom Web Design -
-
- Custom Web Design -

Unique, responsive designs tailored to your brand and audience.

-
-
-
-
-
-
- E-Commerce Solutions -
-
- E-Commerce Solutions -

Build and optimize online stores for seamless shopping experiences.

-
-
-
-
-
-
- Website Hosting -
-
- Website Hosting -

Secure, high-performance hosting with 99.9% uptime guarantee.

-
-
-
-
-
-
- SEO Optimization -
-
- SEO Optimization -

Improve your website's visibility and ranking on search engines.

-
-
-
-
-
-
- Maintenance & Support -
-
- Maintenance & Support -

Regular updates, backups, and troubleshooting to keep your site running smoothly.

-
-
-
-
+ +
+
+

Web Hosting Plans

+ + +
+
-
-
-

Web Hosting Plans

- - -
-
-
- -
-
-
- - -
- -
-
-
- Standard Plan -

$10

-

per month

-
    -
  • check_circleWeb Hosting
  • -
  • check_circleWeekly Backups
  • -
  • check_circleSSL Certificate
  • -
  • check_circleCAPTCHA Protection
  • -
  • check_circleEmail Notifications
  • -
  • check_circleBackend Admin Access
  • -
-
- -
-
- - -
-
-
- Premium Plan -

$15

-

per month

-
    -
  • check_circleAll Standard Features
  • -
  • analyticsMonthly Analytics Reports
  • -
  • speedSite Optimization Reports
  • -
  • emailHTML Marketing Emails
  • -
  • star2 Months Free (Yearly)
  • -
  • starPriority Support
  • -
-
-
- Save 20% -
-
-
-
-
-
+ +
+ +
+ Standard Plan +

$10

+

per month

+
    +
  • ✓ Web Hosting
  • +
  • ✓ Weekly Backups
  • +
  • ✓ SSL Certificate
  • +
  • ✓ CAPTCHA Protection
  • +
  • ✓ Email Notifications
  • +
  • ✓ Backend Admin Access
  • +
+ Get Started +
- - - -
-
-

Ready to Build Your Online Presence?

-

Contact us today to get started on your website project.

- Get Started + +
+ Premium Plan +

$15

+

per month

+
    +
  • ✓ All Standard Features
  • +
  • ✓ Monthly Analytics Reports
  • +
  • ✓ Site Optimization Reports
  • +
  • ✓ HTML Marketing Emails
  • +
  • ✓ 2 Months Free (Yearly)
  • +
  • ✓ Priority Support
  • +
+ Save 20%
+
+
+ + + + +
+
+

Ready to Build Your Online Presence?

+

Contact us today to get started on your website project.

+ Get Started +
+
{% endblock %} \ No newline at end of file