|
|
@@ -0,0 +1,33 @@ |
|
|
|
import { Metadata } from "next"; |
|
|
|
import { 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 Link from "next/link"; |
|
|
|
import { Suspense } from "react"; |
|
|
|
|
|
|
|
const Bssp: React.FC = async () => { |
|
|
|
const { t } = await getServerI18n("bssp") |
|
|
|
|
|
|
|
return ( |
|
|
|
<> |
|
|
|
<Stack |
|
|
|
direction="row" |
|
|
|
justifyContent="space-between" |
|
|
|
flexWrap="wrap" |
|
|
|
rowGap={2} |
|
|
|
> |
|
|
|
<Typography variant="h4" marginInlineEnd={2}> |
|
|
|
{t("Bssp")} |
|
|
|
</Typography> |
|
|
|
|
|
|
|
</Stack> |
|
|
|
<Suspense> |
|
|
|
{t("SSSSS")} |
|
|
|
</Suspense> |
|
|
|
</> |
|
|
|
) |
|
|
|
}; |
|
|
|
|
|
|
|
export default Bssp; |