"use client"; import { useState, useRef, useEffect } from "react"; import FUIFeatureSectionWithCards from "./FeatureCardContent"; import { ArrowUpRight } from "lucide-react"; import Link from "next/link"; export default function Features() { const [tab, setTab] = useState(0); const tabs = useRef(null); const heightFix = () => { if (tabs.current && tabs.current.parentElement) tabs.current.parentElement.style.height = `${tabs.current.clientHeight}px`; }; function handleClickIndex(tab: number) { setTab(tab); } useEffect(() => { heightFix(); }, []); return (

A "Second brain" made for you... or your team

Supermemory offers all the vital building blocks you need to transform your gold mine of content into a powerful knowledgebase for yourself, your team or even a group of friends!

Get Started
); }