import React, { useState } from 'react'; // Main App Component export default function App() { const [activeService, setActiveService] = useState(null); // Smooth scroll function const scrollToSection = (id) => { document.getElementById(id).scrollIntoView({ behavior: 'smooth' }); }; return (
{/* Header */}
Ctrl Alt Josh Your Open Source Business Partner
{/* Mobile menu button (can be expanded with a state for mobile menu) */}
{/* Padding to account for fixed header */} {/* Hero Section */}

Ctrl Alt Josh:
Reboot Your Business Potential

Unlocking Efficiency with Custom Open-Source HR, IT, & Operations Solutions.

{/* About Section */}

About Ctrl Alt Josh

At Ctrl Alt Josh, we believe in the power of open-source software to transform businesses. Just like a "Ctrl+Alt+Del" can reset a system, we help business owners reset and optimize their HR, HRIS, IT, ITSM, and operational needs with highly customizable, cost-effective, and robust open-source solutions.

We don't just implement; we partner with you to understand your unique challenges and craft bespoke solutions. From customizing platforms like OrangeHRM to providing full-stack web development, IT process improvement, performance management, and even complete contact center delivery – we offer a comprehensive package designed to empower your business.

{/* Services Section */}

Our Comprehensive Services

{/* Service Card 1: HR & IT Solutions */} setActiveService(activeService === 'hr-it' ? null : 'hr-it')} /> {/* Service Card 2: Full Stack Web Development */} setActiveService(activeService === 'web-dev' ? null : 'web-dev')} /> {/* Service Card 3: IT Process & Performance Management */} setActiveService(activeService === 'it-pm' ? null : 'it-pm')} /> {/* Service Card 4: Contact Center Delivery */} setActiveService(activeService === 'contact-center' ? null : 'contact-center')} />
{/* Pricing Section */}

Estimated Service Costs in Florida

Our pricing is tailored to the scope and complexity of your project. Below are general estimates for services in Florida to give you an idea. For a precise quote, please contact us for a personalized consultation.

{/* Pricing Card 1: HR & IT Solutions */} {/* Pricing Card 2: Full Stack Web Development */} {/* Pricing Card 3: IT Process & Performance Management */} {/* Pricing Card 4: Contact Center Delivery */}
{/* Advertisements Section */}

Why Choose Ctrl Alt Josh?

{/* Ad Card 1 */} {/* Ad Card 2 */} {/* Ad Card 3 */} {/* Ad Card 4 */}
{/* Call to Action / Contact Section */}

Ready to Transform Your Business?

Let's discuss how Ctrl Alt Josh can customize open-source solutions to meet your specific HR, IT, and operational needs.

{/* Footer */}

© {new Date().getFullYear()} Ctrl Alt Josh. All rights reserved.

Contact: info@ctrlaltjosh.com | (555) 123-4567

Serving Florida Businesses with Open Source Excellence

); } // Service Card Component const ServiceCard = ({ title, description, icon, details, isActive, onClick }) => { return (
{icon}

{title}

{description}

{isActive && (

Key Offerings:

    {details.map((item, index) => (
  • {item}
  • ))}
)}
); }; // Pricing Card Component const PricingCard = ({ title, ranges, note }) => { return (

{title}

    {ranges.map((item, index) => (
  • {item}
  • ))}

{note}

); }; // Ad Card Component const AdCard = ({ headline, copy, image }) => { return (
{headline}

{headline}

{copy}

); };