added it support
All checks were successful
ci/cd / Build (push) Successful in 7s

This commit is contained in:
Mariia Shabelnik 2025-05-05 21:03:22 +02:00
parent 8e241cc6e9
commit 660f59530a
3 changed files with 16 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@ -1,13 +1,16 @@
function Tags({ listOfTags }) {
const tagList = listOfTags.map((itemTag, keyTag) => {
return (
<div className={`bg-gray-500 py-1 px-2 rounded-xl `} key={keyTag}>
<div
className="bg-gray-500 py-1 px-2 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-200 hover:bg-gray-600"
key={keyTag}
>
{itemTag}
</div>
);
});
return (
<div className="text-tags flex flex-wrap gap-2 font-tags text-white ">
<div className="text-tags flex flex-wrap gap-2 font-tags text-white">
{tagList}
</div>
);

View File

@ -44,6 +44,17 @@ const experianceList = [
tags: ["Next.js", "Tailwind CSS", "Board Member", "Web Development", "Automation"],
link: "https://datatjej.se",
sortOrder: 1
},
{
id: 5,
title: "DataTjej",
subtitle: "IT Support & User Management",
info: "As part of the DataTjej board, I manage user access and IT support for our growing community of over 6000 members. I handle user permissions, group management, and ensure secure access to our various platforms. This includes setting up and maintaining appropriate access levels for different user groups, troubleshooting technical issues, and implementing security best practices. I also work on automating user management processes and maintaining our IT infrastructure using Google Cloud services to support our community's needs.",
img: ["/images/datatjej-it-placeholder.jpg"],
previewImg: "/images/datatjej-it-placeholder.jpg",
tags: ["User Management", "IT Support", "Access Control", "Security", "Automation", "Community Management", "Google Cloud"],
link: "https://datatjej.se",
sortOrder: 4
}
];