Launching My Submission: HelperHat - 24/7 AI Live Chat Support For Your Website

Hey everyone!

As a fellow competitor, I’m excited to share that HelperHat, my competition submission, is now publicly available! HelperHat is an “AI-first” live-chat support software for startups and small businesses, offering instant, 24/7 responses to customer inquiries.

Here’s a quick demo of how it works:

Why I Built It: I was motivated to create a simpler, faster, and more affordable alternative to platforms like Intercom. HelperHat gives quick & accurate AI responses to customer inquiries and escalates to you or your team if additional support is needed—ensuring customers are always taken care of.

How It Works: After a simple onboarding process, HelperHat uses your site’s content (plus any uploaded documents) to respond accurately to customer inquiries. It’s accessible across iOS, Android, and the web, so you can manage customers’ inquiries anytime, anywhere. Feedback from early users has been very positive!

For Fellow Competitors: As a thank you to everyone in the competition, I’m offering 25% off for the first 12 months, making it only $15/month with the code GEMINIDEV25.

You can check it out here: HelperHat. I’d love to hear any feedback or improvement suggestions on the demo video, website, or in-app experience if you decide to give it a try.

Thanks, and good luck to everyone in the competition!

10 Likes

Hey I tried out your app and it fits with my website design while running smoothly.
(I placed the Helperhat on the bottom right of the first image.)
It was easy to configure.
I’m currently testing it in my local and alpha environments and willing to subscribe if I need custom support for my site.
Thanks for the good experience.

I’m sharing my code for the React Helperhat component.
Hope this can be useful for your React users.

import React, { useEffect } from 'react';

const HelperHatComponent = () => {
    useEffect(() => {
        const script = document.createElement('script');
        script.src = 'https://helperhat.com/install.js?businessId=yourbusinessId';
        script.async = true;
        script.defer = true;
        document.body.appendChild(script);

        return () => {
            document.body.removeChild(script);
        };
    }, []);

    return (
        <div style={{ textAlign: 'center', marginTop: '20px', marginBottom: '38px' }}>
            <a
                href="https://helperhat.com"
                style={{ fontSize: '10px', color: '#b0b0b0', textDecoration: 'none', zIndex: 1 }}
                target="_blank"
                rel="noopener noreferrer"
            >
                Customer Support Simplified with HelperHat
            </a>
        </div>
    );
}

export default HelperHatComponent;


1 Like

Very cool. Thanks. I just noticed on long desktop screens that it shouldn’t take full height, I’ll limit the height to certain max-heights.

Yes it’ll be helpful for React devs! Thanks!

2 Likes