// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates // SPDX-License-Identifier: MIT import { GithubFilled, GithubOutlined } from "@ant-design/icons"; import { Bird, Book, Camera, ChevronRight, Code, Globe, Home, Lightbulb, Microscope, Network, Paintbrush, Podcast, ShoppingCart, Usb, User, } from "lucide-react"; import Link from "next/link"; import { AuroraText } from "~/components/magicui/aurora-text"; import { BentoCard } from "~/components/magicui/bento-grid"; import { BentoGrid } from "~/components/magicui/bento-grid"; import { FlickeringGrid } from "~/components/magicui/flickering-grid"; import { Button } from "~/components/ui/button"; import { ThemeToggle } from "./_components/theme-toggle"; export default function HomePage() { return (
); } function Header() { return (
🦌 DeerFlow

); } function Footer() { return ( ); } function SectionHeader({ title, description, }: { title: React.ReactNode; description: React.ReactNode; }) { return (

{title}

{description}

); } function Jumbotron() { return (

Deep Research{" "} at Your Fingertips

Discover the revolutionary Multi-Agent Research Assistant that empowers you to dive
deeper and wider into any subject. Equipped with the powerful tools like search
engines, crawlers, Python, and MCP services, DeerFlow provides instant
insights, in-depth reports and even captivating podcasts.

* DEER stands for Deep Exploration and Efficient Research.

); } const caseStudies = [ { icon: Home, title: "Design a futuristic smart home for a family of 4", description: "DeepFlow generates innovative concepts and detailed blueprints for a cutting-edge smart home, incorporating AI-driven automation and sustainable energy solutions.", }, { icon: Book, title: "Write a historical fiction novel set in ancient Rome", description: "DeepFlow assists in crafting compelling characters, intricate plots, and historically accurate settings to bring your ancient Roman story to life.", }, { icon: ShoppingCart, title: "Create a marketing campaign for a new eco-friendly product", description: "DeepFlow develops a strategic marketing plan, including social media content, ad designs, and audience targeting strategies to promote your sustainable product effectively.", }, { icon: Lightbulb, title: "Invent a groundbreaking renewable energy solution", description: "DeepFlow helps brainstorm innovative ideas and provides technical schematics for a renewable energy solution that addresses global energy challenges.", }, { icon: Camera, title: "Direct a short film about climate change", description: "DeepFlow assists in developing a compelling script, visual storyboards, and production plans to create an impactful short film on environmental issues.", }, { icon: Globe, title: "Plan a sustainable travel itinerary for eco-conscious tourists", description: "DeepFlow designs a detailed travel plan featuring eco-friendly accommodations, activities, and transportation options for environmentally aware travelers.", }, { icon: Code, title: "Develop an AI-powered app for mental health support", description: "DeepFlow provides guidance on app design, user experience, and AI integration to create a tool that offers personalized mental health resources and support.", }, { icon: Paintbrush, title: "Create an immersive art installation on human connection", description: "DeepFlow assists in conceptualizing and designing an interactive art installation that explores themes of empathy, relationships, and the power of human connection.", }, ]; function CaseStudySection() { return (
{caseStudies.map((caseStudy) => (
), }} />
))}
); } const features = [ { Icon: Microscope, name: "Dive Deeper and Reach Wider", description: "Unlock deeper insights with advanced tools. Our powerful search and web crawling technology gathers comprehensive data, delivering in-depth reports to enhance your study.", href: "/", cta: "Learn more", background: ( background ), className: "lg:col-start-1 lg:col-end-2 lg:row-start-1 lg:row-end-3", }, { Icon: User, name: "Human-in-the-loop", description: "Refine your research plan, or adjust focus areas all through simple natural language.", href: "/", cta: "Learn more", background: ( background ), className: "lg:col-start-1 lg:col-end-2 lg:row-start-3 lg:row-end-4", }, { Icon: Network, name: "Multi-Agent Architecture", description: "Experience agent teamwork with our Supervisor + Handoffs architecture. From initial communication to deep research and polished report generation, each step is seamlessly coordinated for maximum efficiency and accuracy.", href: "/", cta: "Learn more", background: ( background ), className: "lg:row-start-1 lg:row-end-4 lg:col-start-2 lg:col-end-3", }, { Icon: Bird, name: "Lang Stack", description: "Build with confidence using the LangChain and LangGraph frameworks.", href: "/", cta: "Learn more", background: ( background ), className: "lg:col-start-3 lg:col-end-3 lg:row-start-1 lg:row-end-2", }, { Icon: Usb, name: "MCP Integrations", description: "Supercharge your research workflow and expand your toolkit with seamless MCP integrations.", href: "/", cta: "Learn more", background: ( background ), className: "lg:col-start-3 lg:col-end-3 lg:row-start-2 lg:row-end-3", }, { Icon: Podcast, name: "Podcast Generation", description: "Listen to insights anytime—perfect for on-the-go learning or sharing findings effortlessly. ", href: "/", cta: "Learn more", background: ( background ), className: "lg:col-start-3 lg:col-end-3 lg:row-start-3 lg:row-end-4", }, ]; function CoreFeatureSection() { return (
{features.map((feature) => ( ))}
); } function JoinCommunitySection() { return (
Join the DeerFlow Community } description="Contribute brilliant ideas to shape the future of DeerFlow. Collaborate, innovate, and make impacts." />
); }