Enhance ImageModal and CompactSteps components for improved layout and responsiveness

- Updated ImageModal styles to center the modal and adjust image container dimensions for better visual presentation.
- Refactored CompactSteps to include an icon component for better visual consistency and adjusted layout for improved readability.
- Removed outdated WorkExperience item rendering to streamline the component structure.
- Updated aboutme page to conditionally set icons based on title content for better context.
This commit is contained in:
2025-06-07 15:30:14 +02:00
parent 50287cf55d
commit 27fae7fd5b
4 changed files with 14 additions and 28 deletions

View File

@@ -137,7 +137,7 @@ const metadata = {
title={t.education.title}
items={t.education.items.map((item) => ({
title: item.title,
icon: 'tabler:school',
icon: item.title.includes("Associate") ? 'tabler:certificate' : 'tabler:school',
}))}
/>
</Layout>