mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-26 15:24:48 +08:00
21 lines
543 B
TypeScript
21 lines
543 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import MagicBento from "@/components/ui/magic-bento";
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
|
||
|
|
import { Section } from "../section";
|
||
|
|
|
||
|
|
export function WhatsNewSection({ className }: { className?: string }) {
|
||
|
|
return (
|
||
|
|
<Section
|
||
|
|
className={cn("", className)}
|
||
|
|
title="Whats New in DeerFlow 2.0"
|
||
|
|
subtitle="DeerFlow is now evolving from a Deep Research agent into a full-stack Super Agent"
|
||
|
|
>
|
||
|
|
<div className="flex w-full items-center justify-center">
|
||
|
|
<MagicBento />
|
||
|
|
</div>
|
||
|
|
</Section>
|
||
|
|
);
|
||
|
|
}
|