mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-13 06:36:26 +03:00
- Add floating bottom section nav (appears after hero, hides at footer) - Fix hero split comparison to default 50/50 instead of 70/30 - Remove duplicate "Works with" badges from Install section - Periodic table: restore compact elements, add inline hover tooltips - Truncate command descriptions in Commands section for scannability - Collapse older changelog entries behind "View older releases" - Add GitHub star count (13.3k) next to repo link - Fix meta theme-color to match light mode - Reduce hero top padding, update section 03 subtitle - Clean up footer: remove redundant tagline and anchor links - Fix divider line accumulation in changelog and FAQ sections - Center glass terminal vertically in viewport Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
import { initSplitCompare } from "../effects/split-compare.js";
|
|
|
|
export function initLensEffect() {
|
|
const container = document.getElementById("lens-comparison");
|
|
if (!container) return;
|
|
|
|
initSplitCompare(container, {
|
|
defaultPosition: 50
|
|
});
|
|
}
|
|
|
|
|
|
|