import { preloadClaims } from "@/app/api/claims";
// import { preloadSkill, preloadTeamLeads } from "@/app/api/staff";
import SkillSearch from "@/components/SkillSearch";
import { I18nProvider, getServerI18n } from "@/i18n";
import Add from "@mui/icons-material/Add";
import Button from "@mui/material/Button";
import Stack from "@mui/material/Stack";
import Typography from "@mui/material/Typography";
import { Metadata } from "next";
import Link from "next/link";
import { Suspense } from "react";
export const metadata: Metadata = {
title: "Skill",
};
const Skill: React.FC = async () => {
const { t } = await getServerI18n("skill");
// preloadTeamLeads();
// preloadSkill();
return (
<>
{t("Skill")}
}
LinkComponent={Link}
href="/settings/skill/create"
>
{t("Create Skill")}
}>
>
);
};
export default Skill;