diff --git a/frontend/src/components/landing/hero.tsx b/frontend/src/components/landing/hero.tsx index 0a5f0d067..0e4a4f53f 100644 --- a/frontend/src/components/landing/hero.tsx +++ b/frontend/src/components/landing/hero.tsx @@ -7,6 +7,7 @@ import { Button } from "@/components/ui/button"; import { FlickeringGrid } from "@/components/ui/flickering-grid"; import Galaxy from "@/components/ui/galaxy"; import { WordRotate } from "@/components/ui/word-rotate"; +import { env } from "@/env"; import { cn } from "@/lib/utils"; export function Hero({ className }: { className?: string }) { @@ -56,6 +57,18 @@ export function Hero({ className }: { className?: string }) { />{" "}
with DeerFlow
+ {env.NEXT_PUBLIC_STATIC_WEBSITE_ONLY && ( + +
+ In partnership with  + +
+
+ )}

); } + +function BytePlusIcon(props: React.SVGProps) { + return ( + + + + + + + + + + + ); +}