import Link from "next/link"; import { Card } from "@/components/ui/card"; import { pathOfThread } from "@/core/threads/utils"; import { cn } from "@/lib/utils"; import { Section } from "../section"; export function CaseStudySection({ className }: { className?: string }) { const caseStudies = [ { threadId: "7cfa5f8f-a2f8-47ad-acbd-da7137baf990", title: "Forecast 2026 Agent Trends and Opportunities", description: "Create a webpage with a Deep Research report forecasting the agent technology trends and opportunities in 2026.", }, { threadId: "4f3e55ee-f853-43db-bfb3-7d1a411f03cb", title: 'Generate a Video Based On the Novel "Pride and Prejudice"', description: 'Search the specific scene from the novel "Pride and Prejudice", then generate a video as well as a reference image based on the scenes.', }, { threadId: "21cfea46-34bd-4aa6-9e1f-3009452fbeb9", title: "Doraemon Explains the MOE Architecture", description: "Generate a Doraemon comic strip explaining the MOE architecture to the teenagers who are interested in AI.", }, { threadId: "ad76c455-5bf9-4335-8517-fc03834ab828", title: "An Exploratory Data Analysis of the Titanic Dataset", description: "Explore the Titanic dataset and identify the key factors that influenced survival rates with visualizations and insights.", }, { threadId: "d3e5adaf-084c-4dd5-9d29-94f1d6bccd98", title: "Watch Y Combinator's Video then Conduct a Deep Research", description: "Watch the given Y Combinator's YouTube video and conduct a deep research on the YC's tips for technical startup founders.", }, { threadId: "3823e443-4e2b-4679-b496-a9506eae462b", title: "Collect and Summarize Dr. Fei Fei Li's Podcasts", description: "Collect all the podcast appearances of Dr. Fei Fei Li in the last 6 months, then summarize them into a comprehensive report.", }, ]; return (
{caseStudies.map((caseStudy) => (

{caseStudy.title}

{caseStudy.description}

))}
); }