|
|
|
@ -49,26 +49,14 @@ const githubUrl = `https://github.com/kamranahmedse/developer-roadmap/tree/maste |
|
|
|
|
<div class='container'> |
|
|
|
|
<ProjectTabs projectId={projectId} activeTab='solutions' /> |
|
|
|
|
|
|
|
|
|
<div class='overflow-hidden rounded-lg border bg-white p-5 mb-4'> |
|
|
|
|
<div class='relative -mx-2 -mt-2 mb-5 rounded-lg bg-gray-100/70 p-5'> |
|
|
|
|
<div class='absolute right-2 top-2'> |
|
|
|
|
<Badge variant='yellow' text={projectData.difficulty} /> |
|
|
|
|
</div> |
|
|
|
|
<div class='mb-5'> |
|
|
|
|
<h1 class='mb-1.5 text-3xl font-semibold'>{projectData.title} Solutions</h1> |
|
|
|
|
<p class='text-gray-500'>{projectData.description}</p> |
|
|
|
|
<div class='mb-4 overflow-hidden rounded-lg border bg-white p-5'> |
|
|
|
|
<div class='relative mb-5'> |
|
|
|
|
<h1 class='mb-1 text-xl font-semibold'> |
|
|
|
|
{projectData.title} Solutions |
|
|
|
|
</h1> |
|
|
|
|
<p class='text-sm text-gray-500'>{projectData.description}</p> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class='mt-4'> |
|
|
|
|
<div class='flex flex-row flex-wrap gap-1.5'> |
|
|
|
|
{ |
|
|
|
|
projectData.skills.map((skill) => ( |
|
|
|
|
<Badge variant='green' text={skill} /> |
|
|
|
|
)) |
|
|
|
|
} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<ListProjectSolutions projectId={projectId} client:load /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|