Skip to content

Commit 832707f

Browse files
starbopsclaude
andcommitted
feat: rebrand VoidRunner as AI-powered distributed task execution platform
Transform VoidRunner positioning from serverless deployment platform to distributed task execution platform designed for computational workloads. - Update logos from "AI-POWERED DEPLOYMENT" to "AI-POWERED TASK EXECUTION" - Rebrand site title and description to focus on distributed computing - Transform homepage content to emphasize task orchestration over deployment - Update features page to highlight computational capabilities - Revise pricing terminology from deployments to task executions - Replace all Flask/web application code examples with computational tasks - Update blog posts to align with task execution messaging - Add custom header partial to fix visual title display issues This repositioning clarifies VoidRunner's purpose as a platform for executing one-off computational tasks rather than hosting long-running web applications. Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b4d2e40 commit 832707f

File tree

9 files changed

+365
-246
lines changed

9 files changed

+365
-246
lines changed

config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
baseURL: 'https://voidrunner.dev'
22
languageCode: 'en-us'
3-
title: 'VoidRunner - AI-Powered Serverless Development Platform'
3+
title: 'VoidRunner - AI-Powered Distributed Task Execution Platform'
44
theme: 'hugo-saasify-theme'
55

66
# Hugo configuration
@@ -62,8 +62,8 @@ taxonomies:
6262
params:
6363
# Site identity
6464
author: "VoidRunner Team"
65-
description: "Deploy AI applications in minutes, not hours. VoidRunner's AI-powered platform automatically detects and sets up runtime environments from just your code."
66-
keywords: ["AI", "serverless", "development platform", "deployment", "containers", "kubernetes"]
65+
description: "Execute distributed tasks in minutes, not hours. VoidRunner's AI-powered platform automatically detects optimal runtime environments and orchestrates computational workloads across distributed infrastructure."
66+
keywords: ["AI", "distributed computing", "task execution", "batch processing", "computational workloads", "job orchestration"]
6767

6868
# Logo and branding
6969
logo: "/images/logo.svg"
@@ -100,7 +100,7 @@ params:
100100

101101
# Footer
102102
footer:
103-
content: "Deploy smarter, not harder. VoidRunner's AI-powered platform eliminates infrastructure complexity."
103+
content: "Execute smarter, not harder. VoidRunner's AI-powered platform eliminates distributed computing complexity."
104104
copyright: "© 2025 VoidRunner. All rights reserved."
105105

106106
# Menu configuration

content/_index.md

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: "Deploy AI Applications in Minutes, Not Hours"
3-
description: "VoidRunner's AI-powered platform automatically detects and sets up runtime environments from just your code. Skip the infrastructure complexity and focus on building."
2+
title: "Execute Distributed Tasks in Minutes, Not Hours"
3+
description: "VoidRunner's AI-powered platform automatically detects optimal runtime environments and orchestrates computational workloads. Skip the distributed computing complexity and focus on your tasks."
44
draft: false
55
layout: "home"
66

77
# Hero section
88
hero:
99
enable: true
10-
title: "Deploy AI Applications in **Minutes, Not Hours**"
11-
subtitle: "VoidRunner's AI-powered platform automatically detects and sets up runtime environments from just your code. Skip the infrastructure complexity and focus on building."
10+
title: "Execute Distributed Tasks in **Minutes, Not Hours**"
11+
subtitle: "VoidRunner's AI-powered platform automatically detects optimal runtime environments and orchestrates computational workloads across distributed infrastructure. Skip the complexity and focus on your tasks."
1212
button:
1313
enable: true
1414
label: "Start Free"
@@ -25,100 +25,100 @@ hero:
2525
# Code example section
2626
code_demo:
2727
enable: true
28-
title: "From Code to Production in **3 Simple Steps**"
29-
subtitle: "Just provide your code and description. Our AI does the rest."
28+
title: "From Code to Execution in **3 Simple Steps**"
29+
subtitle: "Just provide your task code and description. Our AI orchestrates the execution."
3030
steps:
31-
- title: "1. Submit Your Code"
32-
description: "Upload your application code with a simple description"
31+
- title: "1. Submit Your Task"
32+
description: "Upload your computational task code with a simple description"
3333
code: |
3434
```json
3535
{
36-
"name": "ML Image Classifier",
37-
"description": "TensorFlow model for image classification with REST API",
38-
"code": "from flask import Flask, request\nimport tensorflow as tf\n\napp = Flask(__name__)\nmodel = tf.keras.models.load_model('model.h5')\n\n@app.route('/predict', methods=['POST'])\ndef predict():\n # Your ML code here\n return {'prediction': result}"
36+
"name": "Fibonacci Calculator",
37+
"description": "Calculate Fibonacci numbers using recursive algorithm",
38+
"code": "import math\n\ndef calculate_fibonacci(n):\n \"\"\"Calculate the nth Fibonacci number\"\"\"\n if n <= 1:\n return n\n return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)\n\n# Calculate and display result\nresult = calculate_fibonacci(20)\nprint(f\"20th Fibonacci number: {result}\")"
3939
}
4040
```
41-
- title: "2. AI Environment Detection"
42-
description: "Our AI analyzes dependencies and creates optimal container environment"
41+
- title: "2. AI Runtime Optimization"
42+
description: "Our AI analyzes dependencies and creates optimal execution environment"
4343
code: |
4444
```dockerfile
4545
FROM python:3.9-slim
4646
WORKDIR /app
4747
48-
# AI-detected dependencies
48+
# AI-optimized for computational tasks
4949
COPY requirements.txt .
50-
RUN pip install tensorflow==2.13.0 flask==2.3.2
50+
RUN pip install numpy==1.24.0
5151
5252
COPY . .
53-
EXPOSE 5000
54-
CMD ["python", "app.py"]
53+
# Optimized for mathematical computation
54+
CMD ["python", "fibonacci_calculator.py"]
5555
```
56-
- title: "3. Deploy & Scale"
57-
description: "Instant deployment with automatic scaling and monitoring"
56+
- title: "3. Execute & Scale"
57+
description: "Instant task execution with automatic resource scaling and monitoring"
5858
code: |
5959
```bash
60-
Environment detected: Python 3.9 + TensorFlow
61-
Container built: ml-classifier-a4f2x:rev-1
62-
Deployed: https://ml-classifier.voidrunner.app
63-
✅ Scaling: 0→3 instances (auto)
64-
65-
📊 Status: Ready (99.9% uptime)
66-
🚀 Cold start: <800ms
67-
💰 Cost: $0.12/hour
60+
Runtime optimized: Python 3.9 + NumPy
61+
Task environment: fibonacci-calc-a4f2x:v1
62+
Executing: Task #12847 (Fibonacci sequence)
63+
✅ Scaling: 1→4 workers (auto)
64+
65+
📊 Status: Complete (runtime: 1.2s)
66+
🚀 Task startup: <300ms
67+
💰 Cost: $0.02/task
6868
```
6969
7070
# Features section
7171
features:
7272
enable: true
73-
title: "**Intelligent Infrastructure** That Thinks Like You"
74-
subtitle: "Stop wrestling with Docker, Kubernetes, and cloud complexity. VoidRunner's AI understands your code and sets up everything automatically."
73+
title: "**Intelligent Task Orchestration** That Thinks Like You"
74+
subtitle: "Stop wrestling with distributed computing complexity. VoidRunner's AI understands your tasks and orchestrates optimal execution automatically."
7575

7676
feature_list:
7777
- icon: "fas fa-brain"
78-
title: "AI-Powered Environment Detection"
79-
description: "Advanced language models analyze your code to detect dependencies, frameworks, and optimal runtime configurations automatically."
78+
title: "AI-Powered Task Analysis"
79+
description: "Advanced language models analyze your computational tasks to detect dependencies, frameworks, and optimal execution strategies automatically."
8080

8181
- icon: "fas fa-rocket"
82-
title: "Sub-Second Cold Starts"
83-
description: "Pre-warmed containers and intelligent caching deliver blazing-fast performance with minimal latency."
82+
title: "Sub-Second Task Initialization"
83+
description: "Pre-warmed execution environments and intelligent resource allocation deliver blazing-fast task startup with minimal latency."
8484

8585
- icon: "fas fa-shield-alt"
8686
title: "Enterprise-Grade Security"
8787
description: "gVisor sandboxing, container isolation, and SOC 2 compliance keep your code and data secure."
8888

8989
- icon: "fas fa-chart-line"
90-
title: "Usage-Based Scaling"
91-
description: "Pay only for what you use with transparent pricing and automatic scaling that grows with your needs."
90+
title: "Dynamic Resource Scaling"
91+
description: "Pay only for computational resources consumed with transparent pricing and automatic scaling that adapts to task demands."
9292

9393
- icon: "fas fa-code"
94-
title: "Multi-Language Support"
95-
description: "Python, Node.js, Go, Java, Rust, and more. If you can code it, we can run it."
94+
title: "Multi-Language Task Support"
95+
description: "Python, Node.js, Go, Java, Rust, and more. If you can code it, we can execute it at scale."
9696

9797
- icon: "fas fa-cogs"
98-
title: "Developer-First API"
99-
description: "RESTful APIs, comprehensive SDKs, and detailed documentation designed by developers, for developers."
98+
title: "Task-Oriented APIs"
99+
description: "RESTful APIs optimized for task submission, monitoring, and result retrieval with comprehensive SDKs and documentation."
100100

101101
# Social proof section
102102
testimonials:
103103
enable: true
104-
title: "Trusted by **Developers Worldwide**"
105-
subtitle: "Join thousands of developers who've eliminated infrastructure headaches"
104+
title: "Trusted by **Researchers & Engineers Worldwide**"
105+
subtitle: "Join thousands of researchers and engineers who've eliminated distributed computing headaches"
106106

107107
testimonial_list:
108108
- name: "Sarah Chen"
109109
designation: "Senior ML Engineer @ TechFlow"
110110
avatar: "/images/testimonials/sarah.svg"
111-
content: "VoidRunner cut our deployment time from 4 hours to 3 minutes. The AI environment detection is incredibly accurate - it understood our complex ML pipeline instantly."
111+
content: "VoidRunner cut our batch processing setup from 4 hours to 3 minutes. The AI runtime optimization is incredibly accurate - it understood our complex ML workload instantly."
112112

113113
- name: "Marcus Rodriguez"
114-
designation: "Lead DevOps @ StartupX"
114+
designation: "Principal Engineer @ StartupX"
115115
avatar: "/images/testimonials/marcus.svg"
116-
content: "Finally, a platform that just works. No more Dockerfile debugging or Kubernetes YAML wrestling. Our team can focus on shipping features, not infrastructure."
116+
content: "Finally, a platform that just works. No more distributed computing setup or resource management wrestling. Our team can focus on research algorithms, not infrastructure."
117117

118118
- name: "Dr. Emily Watson"
119119
designation: "Research Scientist @ AI Labs"
120120
avatar: "/images/testimonials/emily.svg"
121-
content: "The automatic dependency resolution saved us weeks of environment setup. VoidRunner handles our research workloads seamlessly."
121+
content: "The automatic dependency resolution saved us weeks of environment setup. VoidRunner handles our computational research tasks seamlessly."
122122

123123
# Stats section
124124
stats:
@@ -127,16 +127,16 @@ stats:
127127

128128
stat_list:
129129
- number: "1M+"
130-
title: "Functions Deployed"
130+
title: "Tasks Executed"
131131

132132
- number: "99.9%"
133133
title: "Uptime SLA"
134134

135135
- number: "<800ms"
136-
title: "Average Cold Start"
136+
title: "Average Task Startup"
137137

138138
- number: "50+"
139-
title: "Languages Supported"
139+
title: "Languages & Frameworks"
140140

141141
# Pricing preview
142142
pricing_preview:
@@ -149,7 +149,7 @@ pricing_preview:
149149
price: "Free"
150150
description: "Perfect for learning and small projects"
151151
features:
152-
- "1,000 function executions/month"
152+
- "1,000 task executions/month"
153153
- "10 GB-hours compute time"
154154
- "5GB bandwidth"
155155
- "Community support"
@@ -162,7 +162,7 @@ pricing_preview:
162162
price_period: "/month"
163163
description: "For professional developers and growing projects"
164164
features:
165-
- "50,000 executions included"
165+
- "50,000 task executions included"
166166
- "100 GB-hours compute"
167167
- "100GB bandwidth"
168168
- "Email support"
@@ -176,7 +176,7 @@ pricing_preview:
176176
price: "Custom"
177177
description: "For teams and large-scale applications"
178178
features:
179-
- "Unlimited executions"
179+
- "Unlimited task executions"
180180
- "Custom SLAs"
181181
- "Dedicated support"
182182
- "Advanced security"
@@ -188,10 +188,10 @@ pricing_preview:
188188
# CTA section
189189
cta:
190190
enable: true
191-
title: "Ready to **Deploy Smarter**?"
192-
subtitle: "Join thousands of developers who've eliminated infrastructure complexity with VoidRunner."
191+
title: "Ready to **Execute Smarter**?"
192+
subtitle: "Join thousands of researchers and engineers who've eliminated distributed computing complexity with VoidRunner."
193193
button:
194-
label: "Start Building for Free"
194+
label: "Start Executing for Free"
195195
link: "https://app.voidrunner.dev/signup"
196196
button_alt:
197197
label: "Schedule Demo"
@@ -200,22 +200,22 @@ cta:
200200

201201
<!-- Custom sections can be added here -->
202202

203-
## Why Developers Choose VoidRunner
203+
## Why Researchers & Engineers Choose VoidRunner
204204

205-
Traditional deployment workflows are broken. You spend more time configuring environments than building features. VoidRunner fixes this with AI-powered automation that understands your code and sets up everything perfectly, every time.
205+
Traditional distributed computing workflows are broken. You spend more time configuring environments than running computational tasks. VoidRunner fixes this with AI-powered automation that understands your tasks and orchestrates execution perfectly, every time.
206206

207-
### The Old Way: Infrastructure Hell
207+
### The Old Way: Distributed Computing Hell
208208

209-
- Manual Dockerfile creation and debugging
210-
- Complex Kubernetes YAML configurations
211-
- Hours of environment troubleshooting
212-
- Unpredictable deployment failures
213-
- Expensive DevOps overhead
209+
- Manual environment setup and debugging
210+
- Complex cluster configuration and management
211+
- Hours of distributed system troubleshooting
212+
- Unpredictable task execution failures
213+
- Expensive infrastructure overhead
214214

215-
### The VoidRunner Way: AI-Powered Simplicity
215+
### The VoidRunner Way: AI-Powered Task Execution
216216

217-
- Submit code + description → Instant deployment
218-
- Automatic dependency detection and resolution
219-
- Zero-config container optimization
220-
- Predictable, usage-based pricing
221-
- Focus on features, not infrastructure
217+
- Submit task + description → Instant execution
218+
- Automatic dependency detection and optimization
219+
- Zero-config execution environment optimization
220+
- Predictable, task-based pricing
221+
- Focus on computation, not infrastructure

0 commit comments

Comments
 (0)