17 lines
630 B
TypeScript
17 lines
630 B
TypeScript
import { Users } from "lucide-react";
|
|
import ContactUsView from "../views/contactUsView";
|
|
|
|
export default function UserRankingsTab() {
|
|
return (
|
|
<div className="h-full w-full">
|
|
<ContactUsView
|
|
className="mx-auto min-h-[80vh]"
|
|
icon={<Users className="h-[5.5rem] w-[5.5rem]" strokeWidth={1} />}
|
|
title="Unlock user rankings for better visibility"
|
|
description="This feature is a part of the Bifrost enterprise license. We would love to know more about your use case and how we can help you."
|
|
readmeLink="https://docs.getbifrost.ai/enterprise/user-rankings"
|
|
testIdPrefix="user-rankings"
|
|
/>
|
|
</div>
|
|
);
|
|
} |