Files
sistem-desa-mandiri/src/module/_global/layout/layout_navbar_home.tsx
lukman e70103e2f7 style : add module
Deskripsi:
- add global
- add login
- add varification
- add welcome
- add home

No issue
2024-07-03 14:27:32 +08:00

19 lines
476 B
TypeScript

import { Box, Grid, Group } from '@mantine/core';
import React from 'react';
import { WARNA } from '../fun/WARNA';
export const LayoutNavbarHome = ({ children }: { children: React.ReactNode }) => {
return (
<>
<Box pt={25} pl={20} pr={20} m={0} pb={25} bg={WARNA.biruTua}
style={{
borderBottomLeftRadius: 20,
borderBottomRightRadius: 20,
}}
>
{children}
</Box>
</>
);
}
export default LayoutNavbarHome