diff --git a/components/it-standards/ServiceTagLifecycle.tsx b/components/it-standards/LifecyclePicture.tsx
similarity index 68%
rename from components/it-standards/ServiceTagLifecycle.tsx
rename to components/it-standards/LifecyclePicture.tsx
index e8574c9d58bf8aa58a10b86b1f446dae3e804436..095e4901ae30c1ab9d8a4fc09ce36462eeedcee2 100644
--- a/components/it-standards/ServiceTagLifecycle.tsx
+++ b/components/it-standards/LifecyclePicture.tsx
@@ -1,18 +1,15 @@
 import { Tag } from 'types/content/'
 import Image from 'next/image'
 
-type tag = {
-  myTag: Tag; // Deklarieren Sie die Prop myTag hier
-}
-export default function Lifecycle({ myTag }:tag) {
+export default function LifecyclePicture(lifecyclephase:Tag) {
     /* beim tag 'status' soll das zugehörige Lebenszyklus-Bild ausgegeben werden */
-    const imagePath = `/img/standards/lifecycle/${myTag.value}.svg`
+    const imagePath = `/img/standards/lifecycle/${lifecyclephase.value}.svg`
     return (
         <div className="border border-gray-300 rounded-lg overflow-hidden py-2">
             {/* Die Next.js Image-Komponente verwendet das "src" Attribut */}
             <Image
                 src={imagePath}
-                alt={`Bild für Tag ${myTag.value}`}
+                alt={`Bild für Tag ${lifecyclephase.value}`}
                 width={500} // Breite des Bildes
                 height={0} // Höhe des Bildes
             />
diff --git a/components/it-standards/ServiceTag.tsx b/components/it-standards/ServiceTag.tsx
index 08c9fe25661eaf749097139d2fc624c075ca7830..a174f411a6dcea9788000648072e943ef897bbe9 100644
--- a/components/it-standards/ServiceTag.tsx
+++ b/components/it-standards/ServiceTag.tsx
@@ -1,7 +1,7 @@
 import Chip from '@/components/Chip'
 import { Tag } from 'types/content/'
 import { translateLabel, translateTag } from '@/lib/utils/labelHelper'
-import Lifecycle from '@/components/it-standards/ServiceTagLifecycle'
+import LifecyclePicture from '@/components/it-standards/LifecyclePicture'
 
 type ServiceTagOptions = {
   tag: Tag,
@@ -16,7 +16,7 @@ export default ({ tag, style }: ServiceTagOptions) => {
     /* beim tag 'status' soll das zugehörige Lebenszyklus-Bild ausgegeben werden */
     if (tag.name == 'status') {
         return (
-            <Lifecycle myTag={tag} />
+            <LifecyclePicture {...tag } />
         )
     }
     return (
diff --git a/pages/standards/index.tsx b/pages/standards/index.tsx
index 42a630ebbafc704f98f58a6b0313a61bb3e9b53d..44fbc8e1a0d5ce0bba1b2c8c4e5388b1e66f072d 100644
--- a/pages/standards/index.tsx
+++ b/pages/standards/index.tsx
@@ -12,7 +12,7 @@ import { handleMailtoEvent, encodeEmail } from '@/lib/utils'
 import { remark } from 'remark'
 import html from 'remark-html'
 import Tooltip from '@/components/Tooltip'
-import ServiceTag from '@/components/ServiceTag'
+import ServiceTag from '@/components/it-standards/ServiceTag'
 import Chip from '@/components/Chip'
 import Link from 'next/link'