diff options
| author | Kinfe123 <[email protected]> | 2024-06-24 11:38:56 +0300 |
|---|---|---|
| committer | Kinfe123 <[email protected]> | 2024-06-24 11:38:56 +0300 |
| commit | cdebb0b48ee90b3a2f0a1c5ec574ce445531ceb8 (patch) | |
| tree | 69545a7f5b08ad77863d0c9c8e158c755298e7d4 | |
| parent | fix: wiping out the components (diff) | |
| download | supermemory-cdebb0b48ee90b3a2f0a1c5ec574ce445531ceb8.tar.xz supermemory-cdebb0b48ee90b3a2f0a1c5ec574ce445531ceb8.zip | |
fix: clean up
| -rw-r--r-- | apps/web/app/(landing)/Cta.tsx | 3 | ||||
| -rw-r--r-- | apps/web/app/(landing)/FeatureCardContent.tsx | 7 | ||||
| -rw-r--r-- | apps/web/app/(landing)/Features/features.tsx | 2 |
3 files changed, 1 insertions, 11 deletions
diff --git a/apps/web/app/(landing)/Cta.tsx b/apps/web/app/(landing)/Cta.tsx index fc86b388..59495209 100644 --- a/apps/web/app/(landing)/Cta.tsx +++ b/apps/web/app/(landing)/Cta.tsx @@ -1,10 +1,7 @@ -import Image from "next/image"; import React from "react"; import EmailInput from "./EmailInput"; import GridPattern from "./CardPatterns/AnimatedGrid"; -import { cn } from "@repo/ui/lib/utils"; import { ChevronRight } from "lucide-react"; -import { Gradient } from "./Features/features"; // import {Animated} function Cta() { diff --git a/apps/web/app/(landing)/FeatureCardContent.tsx b/apps/web/app/(landing)/FeatureCardContent.tsx index a7d90a88..1b38cd65 100644 --- a/apps/web/app/(landing)/FeatureCardContent.tsx +++ b/apps/web/app/(landing)/FeatureCardContent.tsx @@ -65,12 +65,8 @@ export default function FUIFeatureSectionWithCards() { <div className="relative mx-auto max-w-2xl sm:text-center"> <div className="relative z-10"> <h3 className="mt-4 text-3xl font-normal tracking-tighter text-gray-200 sm:text-4xl md:text-5xl font-geist"> - {/* Let’s help power your SaaS */} </h3> - {/* <p className="mt-3 text-gray-200 font-geist"> - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec - congue, nisl eget molestie varius, enim ex faucibus purus. - </p> */} + </div> <div className="absolute inset-0 mx-auto max-w-xs h-44 blur-[118px]" @@ -80,7 +76,6 @@ export default function FUIFeatureSectionWithCards() { }} ></div> </div> - {/* <hr className="z-20 mx-auto w-1/2 inivisible h-[0.2px] bg-whi" /> */} <div className="relative z-20 mt-[4rem]"> <ul className="grid gap-8 sm:grid-cols-2 lg:grid-cols-3"> {features.map((item, idx) => ( diff --git a/apps/web/app/(landing)/Features/features.tsx b/apps/web/app/(landing)/Features/features.tsx index 41c68ccc..c2e4634a 100644 --- a/apps/web/app/(landing)/Features/features.tsx +++ b/apps/web/app/(landing)/Features/features.tsx @@ -1,5 +1,3 @@ -import { PlayIcon } from "lucide-react"; -import ChatBubbleWing from "./chatbubble"; import { cn } from "@repo/ui/lib/utils"; export const Gradient = ({ opacity = 50 }: { opacity?: number }) => { |