mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
* feat: add docs site - Implemented dynamic routing for MDX documentation pages with language support. - Created layout components for documentation with a header and footer. - Added metadata for various documentation sections in English and Chinese. - Developed initial content for the DeerFlow App and Harness documentation. - Introduced i18n hooks and translations for English and Chinese languages. - Enhanced header component to include navigation links for documentation and blog. - Established a structure for tutorials and reference materials. - Created a new translations file to manage locale-specific strings. * feat: enhance documentation structure and content for application and harness sections * feat: update .gitignore to include .playwright-mcp and remove obsolete Playwright YAML file * fix(docs): correct punctuation and formatting in documentation files * feat(docs): remove outdated index.mdx file from documentation * fix(docs): update documentation links and improve Chinese description in index.mdx * fix(docs): update title in Chinese for meta information in _meta.ts
118 lines
3.6 KiB
TypeScript
118 lines
3.6 KiB
TypeScript
import { StarFilledIcon, GitHubLogoIcon } from "@radix-ui/react-icons";
|
|
import Link from "next/link";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
import { NumberTicker } from "@/components/ui/number-ticker";
|
|
import type { Locale } from "@/core/i18n/locale";
|
|
import { getI18n } from "@/core/i18n/server";
|
|
import { env } from "@/env";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export type HeaderProps = {
|
|
className?: string;
|
|
homeURL?: string;
|
|
locale?: Locale;
|
|
};
|
|
|
|
export async function Header({ className, homeURL, locale }: HeaderProps) {
|
|
const isExternalHome = !homeURL;
|
|
const { locale: resolvedLocale, t } = await getI18n(locale);
|
|
const lang = resolvedLocale.substring(0, 2);
|
|
return (
|
|
<header
|
|
className={cn(
|
|
"container-md fixed top-0 right-0 left-0 z-20 mx-auto flex h-16 items-center justify-between backdrop-blur-xs",
|
|
className,
|
|
)}
|
|
>
|
|
<div className="flex items-center gap-6">
|
|
<a
|
|
href={homeURL ?? "https://github.com/bytedance/deer-flow"}
|
|
target={isExternalHome ? "_blank" : "_self"}
|
|
rel={isExternalHome ? "noopener noreferrer" : undefined}
|
|
>
|
|
<h1 className="font-serif text-xl">DeerFlow</h1>
|
|
</a>
|
|
</div>
|
|
<nav className="mr-8 ml-auto flex items-center gap-8 text-sm font-medium">
|
|
<Link
|
|
href={`/${lang}/docs`}
|
|
className="text-secondary-foreground hover:text-foreground transition-colors"
|
|
>
|
|
{t.home.docs}
|
|
</Link>
|
|
<a
|
|
href={`/${lang}/blog`}
|
|
target="_self"
|
|
className="text-secondary-foreground hover:text-foreground transition-colors"
|
|
>
|
|
{t.home.blog}
|
|
</a>
|
|
</nav>
|
|
<div className="relative">
|
|
<div
|
|
className="pointer-events-none absolute inset-0 z-0 h-full w-full rounded-full opacity-30 blur-2xl"
|
|
style={{
|
|
background: "linear-gradient(90deg, #ff80b5 0%, #9089fc 100%)",
|
|
filter: "blur(16px)",
|
|
}}
|
|
/>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
asChild
|
|
className="group relative z-10"
|
|
>
|
|
<a
|
|
href="https://github.com/bytedance/deer-flow"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<GitHubLogoIcon className="size-4" />
|
|
Star on GitHub
|
|
{env.NEXT_PUBLIC_STATIC_WEBSITE_ONLY === "true" &&
|
|
env.GITHUB_OAUTH_TOKEN && <StarCounter />}
|
|
</a>
|
|
</Button>
|
|
</div>
|
|
<hr className="from-border/0 via-border/70 to-border/0 absolute top-16 right-0 left-0 z-10 m-0 h-px w-full border-none bg-linear-to-r" />
|
|
</header>
|
|
);
|
|
}
|
|
|
|
async function StarCounter() {
|
|
let stars = 10000; // Default value
|
|
|
|
try {
|
|
const response = await fetch(
|
|
"https://api.github.com/repos/bytedance/deer-flow",
|
|
{
|
|
headers: env.GITHUB_OAUTH_TOKEN
|
|
? {
|
|
Authorization: `Bearer ${env.GITHUB_OAUTH_TOKEN}`,
|
|
"Content-Type": "application/json",
|
|
}
|
|
: {},
|
|
next: {
|
|
revalidate: 3600,
|
|
},
|
|
},
|
|
);
|
|
|
|
if (response.ok) {
|
|
const data = await response.json();
|
|
stars = data.stargazers_count ?? stars; // Update stars if API response is valid
|
|
}
|
|
} catch (error) {
|
|
console.error("Error fetching GitHub stars:", error);
|
|
}
|
|
return (
|
|
<>
|
|
<StarFilledIcon className="size-4 transition-colors duration-300 group-hover:text-yellow-500" />
|
|
{stars && (
|
|
<NumberTicker className="font-mono tabular-nums" value={stars} />
|
|
)}
|
|
</>
|
|
);
|
|
}
|