import { Suspense } from "react"; import { FeaturesViewer } from "@nextsparkjs/core/components/devtools/FeaturesViewer"; import { Layers } from "lucide-react"; import { getTranslations } from "next-intl/server"; /** * Features Registry Page * * Displays all features from the testing registry with coverage information. * Provides filtering and search capabilities. */ async function DevFeaturesPageContent() { const t = await getTranslations("devtools.features"); return (
{/* Header */}

{t("title")}

{t("description")}

{/* Features Viewer */}
); } export default function DevFeaturesPage() { return ( ); }