Skip to content

Commit

Permalink
Add AI Assistant
Browse files Browse the repository at this point in the history
  • Loading branch information
PabRubio authored Jan 10, 2025
1 parent 85594d5 commit fcf0c8b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,20 @@ function Page({
window.paper = `Welcome, intrepid hacker! We'd love to have you in our community. Get your invite at hack.af/slack. Under "Why do you want to join the Hack Club Slack?" add a 🦄 and we'll ship you some exclusive stickers! `
}, [])

useEffect(() => {
const script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://cdn.voiceflow.com/widget/bundle.mjs';
script.onload = () => {
window.voiceflow.chat.load({
verify: { projectID: '677d53f6c85e69095b811d6a' },
url: 'https://general-runtime.voiceflow.com',
versionID: 'production',
});
};
document.body.appendChild(script);
}, []);

const easterEgg = () => {
alert('Hey, you typed the Konami Code!')

Expand Down

0 comments on commit fcf0c8b

Please sign in to comment.