|
|
@@ -46,6 +46,20 @@ const Line: React.FC<LineProps> = ({width, height, left, top}) => (
|
|
|
);
|
|
|
|
|
|
const Organization: React.FC = () => {
|
|
|
+ const isMobile = window.innerWidth < 768;
|
|
|
+
|
|
|
+ if (isMobile) {
|
|
|
+ return (
|
|
|
+ <div className="w-full flex justify-center items-center px-4">
|
|
|
+ <img
|
|
|
+ src="/image/조직도.png"
|
|
|
+ alt="조직도"
|
|
|
+ className="w-full max-w-[500px] h-auto object-contain"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
const lines = [
|
|
|
{width: "w-0", height: "h-[755.07px]", left: "left-[435.65px]", top: "top-[17.12px]"},
|
|
|
{width: "w-35", height: "h-0", left: "left-[300px]", top: "top-[137.81px]"},
|