diff --git a/src/app/ims-policy/page.tsx b/src/app/ims-policy/page.tsx new file mode 100644 index 0000000..9905f89 --- /dev/null +++ b/src/app/ims-policy/page.tsx @@ -0,0 +1,65 @@ +import { Footer } from "@/components/Footer"; +import { Header } from "@/components/Header"; +import { PageHero } from "@/components/PageShared"; +import { imsPolicy } from "@/data/company"; + +export const metadata = { + title: "خط مشی سیستم مدیریت یکپارچه | رسام تجارت هواران", + description: + "خط مشی سیستم مدیریت یکپارچه (IMS) شرکت رسام تجارت هواران بر اساس استانداردهای ISO 9001، ISO 14001 و ISO 45001", +}; + +export default function ImsPolicyPage() { + return ( + <> +
+
+ + +
+
+
+ {imsPolicy.paragraphs.map((paragraph) => ( +

+ {paragraph} +

+ ))} +
+
+
+ +
+
+

+ {imsPolicy.goalsTitle} +

+
    + {imsPolicy.goals.map((goal, index) => ( +
  • + + {index + 1} + + {goal} +
  • + ))} +
+
+
+
+