Skip to content

Commit

Permalink
Update Browsing.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
rNLKJA committed Dec 29, 2023
1 parent b6c5808 commit 5b64703
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions components/layout/project/Browsing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,16 @@ export const ProjectContent = (project) => {
return (
<div className="py-10">
<div className="flex justify-between">
<div className="flex flex-start gap-4">
<div className="flex flex-wrap gap-4">
<Image src={project.icon} width={35} height={35} />
<h4>{project.title}</h4>
</div>
<p>{project.date}</p>
</div>
<br />
<p>{project.description}</p>
<p className="leading-5">{project.date}</p>
<br />

<p className="leading-10">{project.description}</p>
<br />
<ul className="flex flex-wrap gap-4">
{project.skills.map((skill) => (
Expand Down

0 comments on commit 5b64703

Please sign in to comment.