mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-20 19:46:16 +00:00
* docs: design frontend performance remediation * docs: plan frontend performance remediation * test(frontend): add route asset performance budgets * perf(nginx): compress textual responses safely * perf(frontend): lazy load case study media * perf(frontend): bound static demo file tracing * perf(frontend): restore static locale boundaries * perf(frontend): defer closed workspace panels * perf(frontend): split editors and deduplicate highlighting * perf(frontend): index incremental message derivation * perf(frontend): stabilize paged history cache policy * perf(frontend): bound streaming markdown renders * perf(frontend): virtualize message history * perf(frontend): bound and virtualize chat lists * perf(frontend): suspend inactive decorative animation * perf(browser): stream latest frames as binary * perf(artifacts): stream bounded text previews * docs: finalize performance runtime boundaries * style(backend): apply test formatting * fix(frontend): keep translation functions client-side * perf(frontend): defer decorative animation bundles * test(frontend): lock optimized route budgets * fix: harden frontend performance boundaries * test(frontend): update i18n provider fixture * fix(frontend): preserve sidebar pagination position * style(backend): format artifact range test
27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
import { Footer } from "@/components/landing/footer";
|
|
import { Header } from "@/components/landing/header";
|
|
import { Hero } from "@/components/landing/hero";
|
|
import { CaseStudySection } from "@/components/landing/sections/case-study-section";
|
|
import { CommunitySection } from "@/components/landing/sections/community-section";
|
|
import { SandboxSection } from "@/components/landing/sections/sandbox-section";
|
|
import { SkillsSection } from "@/components/landing/sections/skills-section";
|
|
import { WhatsNewSection } from "@/components/landing/sections/whats-new-section";
|
|
import { DEFAULT_LOCALE } from "@/core/i18n/locale";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<div className="min-h-screen w-full overflow-x-clip bg-[#0a0a0a]">
|
|
<Header locale={DEFAULT_LOCALE} />
|
|
<main className="flex w-full flex-col">
|
|
<Hero />
|
|
<CaseStudySection />
|
|
<SkillsSection />
|
|
<SandboxSection />
|
|
<WhatsNewSection />
|
|
<CommunitySection />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|