import { Create } from "@link-stack/bridge-ui"; type PageProps = { params: Promise<{ segment: string[] }>; }; export default async function Page({ params }: PageProps) { const { segment } = await params; const service = segment[0]; return ; }