feat: updated homepage

- Added the 'lenis' library for smooth scrolling functionality.
- Integrated 'UseCasesGrid' component into the homepage layout.
- Updated 'HeroSection' to replace image elements with 'WalkthroughScroll' for enhanced user experience.
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-02-16 05:50:47 -08:00
parent 9e359a79b9
commit 5825ab9884
18 changed files with 346 additions and 65 deletions

View file

@ -141,9 +141,7 @@ export const InlineMentionEditor = forwardRef<InlineMentionEditorRef, InlineMent
// Preserve mention chips as inline @title tokens.
if (element.hasAttribute(CHIP_DATA_ATTR)) {
const title = element
.querySelector("[data-mention-title='true']")
?.textContent?.trim();
const title = element.querySelector("[data-mention-title='true']")?.textContent?.trim();
if (title) {
return `@${title}`;
}