This commit is contained in:
user
2025-12-07 22:17:37 +02:00
parent 50af23c51c
commit 4e6c901057
31 changed files with 746 additions and 1248 deletions

View File

@@ -1,7 +1,7 @@
import Title from "@/components/atoms/title";
import { Button } from "@/components/ui/button";
import React from "react";
import { Dialog, DialogContent, DialogHeader } from "@/components/ui/dialog";
import React from "react";
function CertificationDetails(props: {
yes: { title: string; skills: string[] }[];
@@ -29,11 +29,11 @@ function CertificationDetails(props: {
{props.yes.map((item, index) => (
<div key={index} className="flex w-full gap-2">
<div className="flex w-8 flex-col items-center">
<div className="h-2 w-0.5 bg-lime-200">
<div className="h-2 w-0.5 bg-blue-200">
{" "}
</div>
<div className="h-3 w-3 rounded-full bg-lime-200"></div>
<div className="h-full w-0.5 bg-lime-200">
<div className="h-3 w-3 rounded-full bg-blue-200"></div>
<div className="h-full w-0.5 bg-blue-200">
{" "}
</div>
</div>