style : add module
Deskripsi: - add global - add login - add varification - add welcome - add home No issue
This commit is contained in:
19
src/module/_global/layout/layout_navbar_home.tsx
Normal file
19
src/module/_global/layout/layout_navbar_home.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
Reference in New Issue
Block a user