mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-02-13 15:15:45 +01:00
- Fix syntax errors in skills markdown files (.github/skills, .opencode/skills) - Change typescript to tsx for code blocks with JSX - Replace ellipsis (...) in array examples with valid syntax - Separate CSS from TypeScript into distinct code blocks - Convert JavaScript object examples to valid JSON in docs - Fix enum definitions with proper comma separation
30 lines
823 B
TypeScript
30 lines
823 B
TypeScript
import { Suspense } from "react";
|
|
import CompanyManagementClient from "./CompanyManagementClient";
|
|
|
|
export const metadata = {
|
|
title: "Company Management | LiveDash Platform",
|
|
description: "Manage company settings, users, and analytics",
|
|
};
|
|
|
|
// Provide at least one sample param for build-time validation
|
|
// Runtime params not in this list will be handled dynamically
|
|
export async function generateStaticParams() {
|
|
return [{ id: "sample" }];
|
|
}
|
|
|
|
function CompanyLoadingFallback() {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen">
|
|
<div className="text-center">Loading company details...</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function CompanyManagementPage() {
|
|
return (
|
|
<Suspense fallback={<CompanyLoadingFallback />}>
|
|
<CompanyManagementClient />
|
|
</Suspense>
|
|
);
|
|
}
|