"use client"; import { AccentColor, AdminColor } from "@/app_modules/_global/color/color_pallet"; import { Group, Button, Loader } from "@mantine/core"; import { IconChevronLeft } from "@tabler/icons-react"; import { useRouter } from "next/navigation"; import { useState } from "react"; export default function AdminGlobal_ComponentBackButton({ path, }: { path?: string; }) { const router = useRouter(); const [isLoading, setLoading] = useState(false); return ( <> ); }