import $ from "jquery"; import * as JSX from "./jsx"; import AsciiArt from "./ascii-art" import { GroupBox, Page, RolldownList, RolldownListItem } from "./components"; const text_l = [ "Have you considered how public AI tools might expose proprietary information?", "What would the impact be if the sensitive data you have shared with AI tool was leaked?", "How does your current AI provider handle security indicents? How transparent are they, really?", "What happens to your data after it is shared with public AI tools?", "Are you comfortable with the AI models that you interact with being retrained on the data you've shared with it?", ]; const text_r = [ "Unrestricted prompt and tooling customization.", "100% private LLM access with dedicated personal instances.", "Frictionless access and removal for all of your shared information.", "Long-term memory, web access, and notes provided with base configuration.", "Custom embedded 'modules' available by direct contact via support page.", "Unlimited API calls.", ]; function runTypewriter( messages: string[], elId: string ) { const el = $( elId ).find( ".groupbody" ); if( !el ) return; const type = ( el: JQuery, str: string ) => { const span = $( ); span.html( "> " ); el.append( span ); let i = 0; const typeWord = () => { const words = str.split( ' ' ); if( i < words.length ) { span.html( span.html() + words[i] + ' ' ); setTimeout( typeWord, 25 + Math.random() * 100 ); } ++i; }; typeWord(); } for( let msg of messages ) { type( el, msg ); el.append(
); } } function HomeInfo() { const ret =
; setTimeout( () => { runTypewriter( text_l, "#q2a" ); runTypewriter( text_r, "#features" ); } ); return ret; } function HomeFaq() { return Unlike many of our competitors, we do not harvest or sell your personal data. We are hobbyists that simply want to provide the best possible service to assist you in achieving your goals. We pride ourselves in the fact that we are small and tight-knit team of hobbyist developers with a passion to create and ship tools that can help reshape your daily life. We believe that competition is a benefit in society. If we are successful in our growth, we can apply pressure towards others to stop data-brokering practices and instead focus on delivering real transparency and an ideal product. At the moment, we utilize Stripe to accept payments. If you have issues with this, please reach out to us on Twitter. We gladly accept BTC, and would prefer it for any custom work we may perform for you. The best form of contact will be through our support account here on Twitter. Alternatively, you can email us here. However, since we are a small team, Twitter would be the most convenient. } export default function Home() { return

Welcome your new second-in-command

; }