File size: 1,920 Bytes
e9c0734 0d21acd e9c0734 0d21acd e9c0734 0d21acd e9c0734 2a215c2 91d7c85 e9c0734 0d21acd e9c0734 2a215c2 91d7c85 e9c0734 0d21acd e9c0734 2a215c2 91d7c85 e9c0734 0d21acd e9c0734 2a215c2 91d7c85 e9c0734 0d21acd 2a215c2 0d21acd 2a215c2 0d21acd e9c0734 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
"use client"
import { Scissors, Sparkles, Mic, Smile, Tags, Type } from 'lucide-react';
import type { Category } from '../types/categories';
import SegmentationIcon from './icons/SegmentationIcon';
import TranscriptionIcon from './icons/TranscriptionIcon';
import SentimentAnalysisIcon from './icons/SentimentAnalysisIcon';
import EmbeddingIcon from './icons/EmbeddingIcon';
import ClassificationIcon from './icons/ClassificationIcon';
import TextGenerationIcon from './icons/TextGenerationIcon';
export const categories: Category[] = [
{
title: "Segment",
slug: "segment",
icon: Scissors,
description: "Slice and dice images with precision. Carve out objects and backgrounds like a digital sculptor.",
status: "Coming Soon",
colorName: "indigo",
graphic: SegmentationIcon
},
{
title: "Embed",
slug: "embed",
icon: Sparkles,
description: "Transform words and pixels into mathematical magic.",
status: "Coming Soon",
colorName: "teal",
graphic: EmbeddingIcon
},
{
title: "Transcribe",
slug: "transcribe",
icon: Mic,
description: "AI that hears all and forgets nothing (except the 'uhms').",
status: "Coming Soon",
colorName: "rose",
graphic: TranscriptionIcon
},
{
title: "Sentiment",
slug: "sentiment",
icon: Smile,
description: "Read between the lines. From π€ to π , we've got feelings figured out.",
status: "Coming Soon",
colorName: "amber",
graphic: SentimentAnalysisIcon
},
{
title: "Classify",
slug: "classify",
icon: Tags,
description: "Sort the digital chaos.",
status: "Coming Soon",
colorName: "purple",
graphic: ClassificationIcon
},
{
title: "Generate Text",
slug: "generate-text",
icon: Type,
description: "Llama. Qwen. Enough said.",
status: "Coming Soon",
colorName: "blue",
graphic: TextGenerationIcon
}
]; |