Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AI Assistant #1451

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading