From 701ec5851a1cc318b436ccdca1ba9ba3791e480a Mon Sep 17 00:00:00 2001 From: Alireza Hassani Date: Sun, 9 Aug 2026 16:44:13 +0330 Subject: [PATCH] Add IMS policy page and homepage section. Co-authored-by: Cursor --- src/app/ims-policy/page.tsx | 65 ++++++++++++++++++++++++++++++++++++ src/app/page.tsx | 2 ++ src/components/ImsPolicy.tsx | 36 ++++++++++++++++++++ src/data/company.ts | 24 +++++++++++++ 4 files changed, 127 insertions(+) create mode 100644 src/app/ims-policy/page.tsx create mode 100644 src/components/ImsPolicy.tsx 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} +
  • + ))} +
+
+
+
+