import React from "react"; import { SplashScreen, type ValueProposition, } from "@/src/components/ui/splash-screen"; import { ThumbsUp, Star, LineChart, Code } from "lucide-react"; export function ScoresOnboarding() { const valuePropositions: ValueProposition[] = [ { title: "Collect user feedback", description: "Gather thumbs up/down feedback from users to identify high and low quality outputs", icon: , }, { title: "Run model-based evaluations", description: "Use LLMs to automatically evaluate your application's outputs", icon: , }, { title: "Track quality metrics", description: "Monitor quality metrics over time to identify trends and issues", icon: , }, { title: "Use custom metrics", description: "Langfuse's scores are flexible and can be used to track any metric that's associated with an LLM application", icon: , }, ]; return ( ); }