import { getSupermemoryLoginUrl } from "../../utils/constants" const featureCards = [ { number: "01", title: "Save any page", description: "Articles, docs, and references from the browser.", }, { number: "02", title: "Import X bookmarks", description: "Bring saved posts into your memory library.", }, { number: "03", title: "Capture AI chats", description: "Save useful conversations from ChatGPT, Claude, and Gemini.", }, { number: "04", title: "Use context anywhere", description: "Search and reuse memories when you need them.", }, ] function Welcome() { return (
supermemory

Your browser now has{" "} supermemory.

{featureCards.map((feature) => (

{feature.number}

{feature.title}

{feature.description}

))}
) } export default Welcome