llms.txt Content
> ## Documentation Index
> Fetch the complete documentation index at: https://learn.social.plus/llms.txt
> Use this file to discover all available pages before exploring further.
# Home
> Welcome to the social.plus documentation
<div className="hero-section">
<div className="hero-content">
<div className="hero-text">
<h1 className="hero-title">Build with social.plus</h1>
<p className="hero-description">
Get started with social.plus SDKs, UIKits, and APIs to integrate powerful social features into
your application - fast, flexible, and built for scale.
</p>
</div>
<div className="search-container">
<div className="search-box" id="custom-search-trigger" onclick="console.log('DIRECT CLICK DETECTED'); triggerSearch();">
<span className="search-icon">🔍</span>
<input type="text" placeholder="Search..." className="search-input" readOnly />
<span className="search-shortcut">⌘K</span>
</div>
</div>
<script
dangerouslySetInnerHTML={{__html: `
console.log('Script is loading...');
window.triggerSearch = function() {
console.log('triggerSearch called!');
// Method 1: Try to find and examine all buttons first
const allButtons = Array.from(document.querySelectorAll('button'));
console.log('All buttons on page:', allButtons.map(b => ({
element: b,
text: b.textContent?.trim(),
ariaLabel: b.getAttribute('aria-label'),
className: b.className,
id: b.id,
dataset: Object.assign({}, b.dataset)
})));
// Method 2: Try to find search in different ways
const searchCandidates = [
document.querySelector('button[aria-label*="Search"]'),
document.querySelector('button[aria-label*="search"]'),
document.querySelector('.DocSearch-Button'),
document.querySelector('[data-search]'),
document.querySelector('[role="search"] button'),
document.querySelector('input[type="search"]'),
...