add some php host api and add hire developer and ai agent page

This commit is contained in:
Suvodip
2025-03-26 19:58:45 +05:30
parent 63c973f1ca
commit d2f3576d10
15 changed files with 1286 additions and 57 deletions

View File

@@ -7,7 +7,7 @@ import Layout from "../../layouts/Layout.astro"
</div>
<script is:inline>
fetch('/host-api/add-domain/')
fetch('http://localhost:2058/host-api/v1/add-domain/')
.then(response => {
if (!response.ok) throw new Error('Network error');
return response.json();

View File

@@ -20,7 +20,7 @@ import Layout from "../../layouts/Layout.astro"
responseElement.textContent = "Deleting domain...";
try {
const response = await fetch('/host-api/delete-domain/', {
const response = await fetch('http://localhost:2058/host-api/v1/delete-domain/', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',

View File

@@ -7,7 +7,7 @@ import Layout from "../../layouts/Layout.astro"
</div>
<script is:inline>
fetch('/host-api/list-domain/')
fetch('http://localhost:2058/host-api/v1/list-domain/')
.then(response => {
if (!response.ok) throw new Error('Network error');
return response.json();

View File

@@ -0,0 +1,9 @@
---
import Layout from "../layouts/Layout.astro";
import HireAIAgent from "../components/HireAIAgent";
---
<Layout title="">
<div>
<HireAIAgent client:load />
</div>
</Layout>

View File

@@ -0,0 +1,9 @@
---
import Layout from "../layouts/Layout.astro";
import Developer from "../components/HireDeveloper";
---
<Layout title="">
<div>
<Developer client:load />
</div>
</Layout>

View File

@@ -10,43 +10,25 @@ const pageImage = "https://images.unsplash.com/photo-1551731409-43eb3e517a1a?q=8
// Service data
const services = [
{
title: 'PHP Hosting',
description: 'Fast, secure, and reliable PHP hosting solutions for your web applications.',
title: 'Deploy an App',
description: 'WordPress, Joomla, Drupal, PrestaShop, Wiki, Moodle, Directus, PocketBase, StarAPI and more.',
imageUrl: 'https://images.unsplash.com/photo-1599507593499-a3f7d7d97667?q=80&w=2000&auto=format&fit=crop',
features: [
'PHP 8.x support',
'One-click installation of popular CMS',
'Free SSL certificates',
'Optimized for WordPress, Laravel, etc.',
'24/7 Technical support'
],
learnMoreUrl: '/services/php'
features: [ 'WordPress', 'Joomla', 'Drupal', 'PrestaShop', 'Wiki', 'Moodle', 'Directus', 'PocketBase', 'StarAPI' ],
learnMoreUrl: '/services/deploy-an-app'
},
{
title: 'Node.js Hosting',
description: 'High-performance Node.js hosting with seamless deployment pipelines.',
imageUrl: 'https://images.unsplash.com/photo-1570063578733-6a33b69d1538?q=80&w=2000&auto=format&fit=crop',
features: [
'Latest Node.js versions',
'NPM/Yarn support',
'Express, Next.js, and more',
'Managed SSL certificates',
'Automatic scaling'
],
learnMoreUrl: '/services/nodejs'
title: 'Deploy From Source Code',
description: 'Node.js, Python, Ruby, Go, Rust, and more. Deploy your custom applications with ease.',
imageUrl: 'https://images.unsplash.com/photo-1599507593499-a3f7d7d97667?q=80&w=2000&auto=format&fit=crop',
features: ['Node.js', 'Python', 'Ruby', 'Go', 'Rust', 'Docker', 'Kubernetes', 'JAMstack', 'Serverless'],
learnMoreUrl: '/services/deploy-from-source-code'
},
{
title: 'Python Hosting',
description: 'Scalable Python hosting for web applications, APIs, and data science projects.',
title: 'Static Site Hosting',
description: 'Secure and scalable hosting for static websites and JAMstack applications.',
imageUrl: 'https://images.unsplash.com/photo-1526379879527-8559ecfcaec0?q=80&w=2000&auto=format&fit=crop',
features: [
'Python 3.x support',
'Django, Flask, and FastAPI ready',
'Virtual environments',
'Jupyter notebook integration',
'Seamless deployment'
],
learnMoreUrl: '/services/python'
features: ['JAMstack', 'Gatsby', 'Hugo', 'Next.js', 'Nuxt.js', 'VuePress', 'Eleventy', 'SvelteKit', 'Astro'],
learnMoreUrl: '/services/static-site-hosting'
},
{
title: 'Kubernetes (K8s)',
@@ -73,6 +55,20 @@ const services = [
'Simplified management'
],
learnMoreUrl: '/services/k3s'
},
{
title: 'Hire a Human Developer',
description: 'Need a custom solution? Our experts can design a tailored App or WebApp for your specific needs.',
imageUrl: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2000&auto=format&fit=crop',
features: ['Node.js', 'Python', 'Ruby', 'Go', 'Rust', 'Docker', 'Kubernetes', 'JAMstack', 'Serverless'],
learnMoreUrl: '/services/hire-a-human-developer'
},
{
title: 'Hire an AI Agent',
description: 'Need a custom solution? Our experts can design a tailored AI Agent for your specific needs.',
imageUrl: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2000&auto=format&fit=crop',
features: ['Reactive Agents (Stateless, Rule-Based)', 'Proactive Agents (Stateful, Machine Learning)', 'Hybrid Agents (Reactive + Proactive)', 'Model-Based Agents (Stateful, Uses Memory)', 'Goal-Based Agents (Optimizes for an Objective)', 'Utility-Based Agents', 'Self Learning Agents', 'Autonomous AI Agents'],
learnMoreUrl: '/services/hire-an-ai-agent'
}
];
---