Skip to content

Commit

Permalink
Worked on ProjectCard
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarbesh1234 committed Oct 28, 2024
1 parent d2b5ba1 commit b66e340
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/components/programs/project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ interface props {

const Project = ({ title, description, tags }: props) => {
return (
<div>
{title} {description}
{tags.map((text, index) => (
<Tag key={index}>{text}</Tag>
))}
<div className="aspect-square w-1/4 flex-col rounded-md border border-gray-300 bg-white">
<div className="px-8 py-8 text-3xl font-bold">{title}</div>
<div className="flex flex-wrap gap-2 px-8 py-0">
{tags.map((text, index) => (
<Tag key={index}>{text}</Tag>
))}
</div>
<div className="px-8 py-4">{description}</div>
</div>
);
};
Expand Down

0 comments on commit b66e340

Please sign in to comment.