--- // src/pages/ansible/sandbox.astro - Converted from static ansible-sandbox.html import BaseLayout from '../../layouts/BaseLayout.astro'; import Header from '../../components/Header.astro'; import Footer from '../../components/Footer.astro'; const title = "Ansible Sandbox | Argobox"; const description = "Deploy interactive visualizations with ArgoBox Ansible Sandbox - the easiest way to deploy web animations and showcase your creative work."; // Template data (can be externalized later) const templates = [ { id: "fireworks", name: "Fireworks", description: "Interactive fireworks animation with click-to-launch effects", icon: "fas fa-fire", tags: ["Popular"], complexity: "Basic" }, { id: "matrix", name: "Matrix Rain", description: "Digital rain effect inspired by The Matrix movie", icon: "fas fa-code", tags: [], complexity: "Intermediate" }, { id: "starfield", name: "Starfield", description: "3D space journey through a field of stars", icon: "fas fa-star", tags: [], complexity: "Basic" }, { id: "particles", name: "Particles", description: "Interactive particle system that responds to mouse movement", icon: "fas fa-atom", tags: [], complexity: "Intermediate" }, { id: "3d-globe", name: "3D Globe", description: "Interactive 3D Earth globe with custom markers", icon: "fas fa-globe-americas", tags: ["New"], complexity: "Advanced" } ]; --- {/* Add Font Awesome if not loaded globally */} {/* */}
{/* Use specific container class */}
{/* Re-use card style for main container */}
Simulation Mode Active

Ansible Sandbox is Currently Offline

The Ansible Sandbox environment is currently in simulation mode. You can explore the interface, but actual deployments are not available at this time. We're working to bring the full functionality online soon.

Select a Template to Deploy

Choose from our collection of interactive visualizations to deploy with Ansible automation.

{templates.map(template => (

{template.name}

{template.description}

{template.tags.map(tag => {tag})} {template.complexity}
))}
{/* End sandbox-container */}