31 lines
787 B
TypeScript
31 lines
787 B
TypeScript
import { LayoutNavbarHome, WARNA } from '@/module/_global';
|
|
import { ActionIcon, Anchor, Box, Group, rem, Stack, Text } from '@mantine/core';
|
|
import React from 'react';
|
|
import { HiMagnifyingGlass, HiOutlineBell, HiOutlineUser } from "react-icons/hi2";
|
|
import Carosole from '../components/carosole';
|
|
import Features from '../components/features';
|
|
import IconNavbar from '../components/ui/icon_navbar';
|
|
|
|
|
|
|
|
export default function ViewHome() {
|
|
return (
|
|
<>
|
|
<LayoutNavbarHome>
|
|
<Group justify='space-between'>
|
|
<Text fw={'bold'} c={'white'} >Perbekal Darmasaba</Text>
|
|
<IconNavbar/>
|
|
</Group>
|
|
</LayoutNavbarHome>
|
|
<Box p={20}>
|
|
<Stack >
|
|
<Carosole />
|
|
<Features />
|
|
</Stack>
|
|
</Box>
|
|
|
|
</>
|
|
);
|
|
}
|
|
|