import React from "react";
import {
SplashScreen,
type ValueProposition,
} from "@/src/components/ui/splash-screen";
import { Users, LineChart, Filter, BarChart4 } from "lucide-react";
import Link from "next/link";
export function UsersOnboarding() {
const valuePropositions: ValueProposition[] = [
{
title: "Track user interactions",
description:
"Attribute data in Langfuse to specific users by adding a userId to your traces",
icon: ,
},
{
title: "Analyze user behavior",
description:
"Understand how different users interact with your LLM applications",
icon: ,
},
{
title: "Filter by user segments",
description:
"Compare performance across different user segments to identify patterns",
icon: ,
},
{
title: "Monitor usage metrics",
description:
"Track token usage, costs, and other metrics on a per-user basis",
icon: ,
},
];
return (
To start tracking users, you need to add a `userId` to your traces.
See{" "}
documentation
{" "}
for more details.
}
videoSrc="https://static.langfuse.com/prod-assets/onboarding/users-overview-v1.mp4"
/>
);
}