diff --git a/apps/web/app/(landing)/FeatureCardContent.tsx b/apps/web/app/(landing)/FeatureCardContent.tsx index 3eeb59db..a7d90a88 100644 --- a/apps/web/app/(landing)/FeatureCardContent.tsx +++ b/apps/web/app/(landing)/FeatureCardContent.tsx @@ -1,127 +1,61 @@ +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: "Fast Refresh", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue, nisl eget molestie varius.", + 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: "Analytics", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue, nisl eget molestie varius.", - }, - { - icon: ( - - - - ), - title: "Datacenter security", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue, nisl eget molestie varius.", - }, - { - icon: ( - - - - ), - title: "Build on your terms", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue, nisl eget molestie varius.", - }, - { - icon: ( - - - - ), - title: "Safe to use", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue, nisl eget molestie varius.", - }, - { - icon: ( - - - - ), - title: "Flexible", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue, nisl eget molestie varius.", + title: "Writing assistant", + desc: " Use our markdown editor to write content based on your saved data, with the help of AI.", }, ]; diff --git a/apps/web/app/(landing)/Features.tsx b/apps/web/app/(landing)/Features.tsx index 3a7028a7..35217bad 100644 --- a/apps/web/app/(landing)/Features.tsx +++ b/apps/web/app/(landing)/Features.tsx @@ -1,15 +1,7 @@ "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"; import FUIFeatureSectionWithCards from "./FeatureCardContent"; -import { cn } from "@repo/ui/lib/utils"; import { ArrowUpRight } from "lucide-react"; -import { Gradient } from "./Features/features"; export default function Features() { const [tab, setTab] = useState(0); @@ -35,10 +27,7 @@ export default function Features() { src="https://tailwindcss.com/_next/static/media/docs@30.8b9a76a2.avif" className="absolute -top-0 left-10 opacity-40 z-2" /> - {/*
*/}
- {/*
*/} -

@@ -69,209 +58,3 @@ export default function Features() { ); } - -/* - -
-
-
-
-
-
- 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. -

-
-
- -
-
- -
-
-
-
- Carousel 01 -
-
-
-
- Carousel 02 -
-
-
-
- Carousel 03 -
-
-
-
-
-
- -
-
-
-
- -

- Import all your Twitter bookmarks -

-
-

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

-
-
- - - -

- Chat with collections -

-
-

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

-
-
- - - -

- Powerful search -

-
-

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

-
-
-
- - - -

- Knowledge canvas -

-
-

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

-
-
-
- - - -

- Just... bookmarks -

-
-

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

-
-
-
- - - -

- Writing assistant -

-
-

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

-
-
-

-
- */