36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import colors from '@/con/colors';
|
|
import { Stack, Container, List, ListItem, Box, Text, Image } from '@mantine/core';
|
|
import React from 'react';
|
|
import BackButton from '../../_com/BackButto';
|
|
|
|
function Page() {
|
|
return (
|
|
<Stack pos={"relative"} bg={colors.grey[1]} py={"xl"} gap={"42"}>
|
|
<Container w={{ base: "100%", md: "50%" }} p={"xl"}>
|
|
<BackButton/>
|
|
<Stack gap={0}>
|
|
<Text fz={"3.4rem"} ta={"center"} fw={"bold"}>
|
|
Surat Keterangan Beda Biodata Diri
|
|
</Text>
|
|
<Text fz={"h4"} py={20}>
|
|
Persyaratan Dokumen:
|
|
</Text>
|
|
<List>
|
|
<ListItem fz={"sm"}>Pengantar Kelian Banjar Dinas di Wilayah Masing - masing</ListItem>
|
|
<ListItem fz={"sm"}>Fotocopy Ktp atau Kartu Keluarga</ListItem>
|
|
<ListItem fz={"sm"}>Fotocopy dokumen bersangkutan yang terdapat perbedaan biodata diri misal : Sertifikat Tanah/Ijazah/Polis Asuransi dan lainnya.</ListItem>
|
|
</List>
|
|
<Box py={20}>
|
|
<Text fz={"h4"} py={20}>
|
|
Alur Pelayanan:
|
|
</Text>
|
|
<Image src="/api/img/flowchart-suket-beda-biodatadiri-removebg-preview.png" alt='' />
|
|
</Box>
|
|
</Stack>
|
|
</Container>
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
export default Page;
|