style : update style
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import { TEMA, WARNA } from "@/module/_global";
|
import { TEMA, WARNA } from "@/module/_global";
|
||||||
import { Carousel } from "@mantine/carousel";
|
import { Carousel } from "@mantine/carousel";
|
||||||
import { Box, Card, Flex, Title, Text, Skeleton } from "@mantine/core";
|
import { Box, Card, Flex, Title, Text, Skeleton, ActionIcon } from "@mantine/core";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
@@ -10,6 +10,7 @@ import { funGetHome } from "../lib/api_home";
|
|||||||
import toast from "react-hot-toast";
|
import toast from "react-hot-toast";
|
||||||
import { useMediaQuery, useShallowEffect } from "@mantine/hooks";
|
import { useMediaQuery, useShallowEffect } from "@mantine/hooks";
|
||||||
import { useHookstate } from "@hookstate/core";
|
import { useHookstate } from "@hookstate/core";
|
||||||
|
import { MdMoreVert, MdOutlineReadMore } from "react-icons/md";
|
||||||
|
|
||||||
export default function ListDivisi() {
|
export default function ListDivisi() {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
@@ -82,6 +83,15 @@ export default function ListDivisi() {
|
|||||||
</Box>
|
</Box>
|
||||||
</Carousel.Slide>
|
</Carousel.Slide>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{/* MORE ICON */}
|
||||||
|
{/* <Flex justify={"center"} direction={"column"} align={"center"} onClick={() => { }}>
|
||||||
|
<ActionIcon variant="subtle" color="gray" >
|
||||||
|
<IoIosArrowDropright size={40} />
|
||||||
|
</ActionIcon>
|
||||||
|
<Text ta={"center"} c={"dimmed"}>Lihat</Text>
|
||||||
|
<Text ta={"center"} c={"dimmed"} w={100}>Lebih Banyak</Text>
|
||||||
|
</Flex> */}
|
||||||
</Carousel>
|
</Carousel>
|
||||||
}
|
}
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import { TEMA, WARNA } from "@/module/_global";
|
import { TEMA, WARNA } from "@/module/_global";
|
||||||
import { Carousel } from "@mantine/carousel";
|
import { Carousel } from "@mantine/carousel";
|
||||||
import { Box, Card, Flex, Title, Text, Progress, Stack, Skeleton } from "@mantine/core";
|
import { Box, Card, Flex, Title, Text, Progress, Stack, Skeleton, ActionIcon } from "@mantine/core";
|
||||||
import { useMediaQuery, useShallowEffect } from "@mantine/hooks";
|
import { useMediaQuery, useShallowEffect } from "@mantine/hooks";
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
@@ -10,6 +10,8 @@ import { funGetHome } from "../lib/api_home";
|
|||||||
import { IDataHomeKegiatan } from "../lib/type_home";
|
import { IDataHomeKegiatan } from "../lib/type_home";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import { useHookstate } from "@hookstate/core";
|
import { useHookstate } from "@hookstate/core";
|
||||||
|
import { MdMoreVert } from "react-icons/md";
|
||||||
|
import { IoIosArrowDropright } from "react-icons/io";
|
||||||
|
|
||||||
export default function ListProjects() {
|
export default function ListProjects() {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
@@ -86,6 +88,15 @@ export default function ListProjects() {
|
|||||||
</Box>
|
</Box>
|
||||||
</Carousel.Slide>
|
</Carousel.Slide>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{/* MORE ICON */}
|
||||||
|
{/* <Flex justify={"center"} direction={"column"} align={"center"} onClick={() => { }}>
|
||||||
|
<ActionIcon variant="subtle" color="gray" >
|
||||||
|
<IoIosArrowDropright size={40} />
|
||||||
|
</ActionIcon>
|
||||||
|
<Text ta={"center"} c={"dimmed"}>Lihat</Text>
|
||||||
|
<Text ta={"center"} c={"dimmed"} w={100}>Lebih Banyak</Text>
|
||||||
|
</Flex> */}
|
||||||
</Carousel>
|
</Carousel>
|
||||||
}
|
}
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user