import { useState } from "react"; import { BrandMark } from "./BrandMark"; import { HfIcon } from "./HfIcon"; import { NeuroBackground } from "./NeuroBackground"; import { MODEL_CONFIG, type ModelOption } from "../model-config"; interface LandingPageProps { onStart: (modelId: string) => void; } export function LandingPage({ onStart }: LandingPageProps) { const [bgReady, setBgReady] = useState(false); return (
setBgReady(true)} />

LFM2-MoE

WebGPU-accelerated Mixture of Experts.
Built with{" "} Transformers.js

Choose model
{MODEL_CONFIG.models.map((model: ModelOption) => ( ))}
); }