"use client"; import { useState, useRef, useEffect } from "react"; import Image from "next/image"; import { X } from "@repo/ui/components/icons"; import { features } from "./FeatureContent"; import { CardClick } from "@repo/ui/components/cardClick"; 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 (
{/* Carousel */}
{/* Content */}
Use cases

Save time and keep things organised

With Supermemory, it's really easy to save information from all over the internet, while training your own AI to help you do more with it.

{/* Tabs buttons */}
{/* Tabs items */}
{/* Item 1 */}
Carousel 01
{/* Item 2 */}
Carousel 02
{/* Item 3 */}
Carousel 03
{/* Features blocks */}
{/* Block #1 */}

Import all your Twitter bookmarks

Use all the knowledge you've saved on Twitter to train your own supermemory.

{/* Block #2 */}

Chat with collections

Use collections to talk to specific knowledgebases like 'My twitter bookmarks', or 'Learning web development'

{/* Block #3 */}

Powerful search

Look up anything you've saved in your supermemory, and get the information you need in seconds.

{/* Block #4 */}

Knowledge canvas

Arrange your saved information in a way that makes sense to you in a 2d canvas.

{/* Block #5 */}

Just... bookmarks

AI is cool, but sometimes you just need a place to save your stuff. Supermemory is that place.

{/* Block #6 */}

Writing assistant

Use our markdown editor to write content based on your saved data, with the help of AI.

); }