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 =