"use client"; /* eslint-disable no-unused-vars */ import * as React from "react"; import { motion } from "framer-motion"; import { IllustrationProps } from "./types"; export const ConceptSystem: React.FC = ({ className = "", delay: _delay = 0, }) => ( {[0, 72, 144, 216, 288].map((angle, i) => { const x = 60 + Math.cos((angle * Math.PI) / 180) * 40; const y = 60 + Math.sin((angle * Math.PI) / 180) * 40; return ( ); })} );