import { Twitter } from "@repo/ui/components/icons"; import { GlareCard } from "./CardPatterns/Glare"; import React from "react"; import { MessageCircle, Search } from "lucide-react"; export default function FUIFeatureSectionWithCards() { const features = [ { icon: , title: "Twitter Bookmarks", desc: "Use all the knowledge you've saved on Twitter to train your own supermemory..", }, { icon: , title: "Powerful search", desc: "Look up anything you've saved in your supermemory, and get the information you need in seconds.", }, { icon: , title: "Chat with collections", desc: "Use collections to talk to specific knowledgebases like 'My twitter bookmarks', or 'Learning web development'", }, { icon: ( ), title: "Knowledge canvas", desc: " Arrange your saved information in a way that makes sense to youin a 2d canvas.", }, { icon: ( ), title: "Just... bookmarks", desc: "AI is cool, but sometimes you just need a place to save your stuff. Supermemory is that place.", }, { icon: ( ), title: "Writing assistant", desc: " Use our markdown editor to write content based on your saved data, with the help of AI.", }, ]; return (

    {features.map((item, idx) => (
  • {item.icon}

    {item.title}

    {item.desc}

  • ))}
); }