import { AGDP_NODES } from "@/features/home/constants/process_contents"; import { AgdpOrbitNode } from "./AgdpOrbitNode"; import { AgdpRewardPathLabel } from "./AgdpRewardPathLabel"; type Props = { visible: boolean }; export function AgdpEngineDiagram({ visible }: Props) { return (
AGDP

Infinite
Marketing

{AGDP_NODES.map((node) => ( ))}
); }