From f467e613b6173253bc2d217f15bb434c8113d52f Mon Sep 17 00:00:00 2001 From: Henry Li Date: Tue, 7 Apr 2026 16:07:37 +0800 Subject: [PATCH] feat: add BytePlus logo (#1948) --- frontend/src/components/landing/hero.tsx | 59 ++++++++++++++++++++++++ 1 file changed, 59 insertions(+) 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 ( + + + + + + + + + + + ); +}