Skip to content

Commit

Permalink
Update CVTest.component.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
w3bdesign committed Jul 23, 2024
1 parent dabf944 commit 12d5949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CV/CVTest.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const CV: React.FC = () => {
content: (
<div className="text-gray-300">
{cvData.experience.map((exp, id) => (
<div key={id} className="mb-4">
<div key={id} className="mb-6">
<h3 className="font-semibold text-white">
{exp.period} - {exp.company}
</h3>
Expand All @@ -141,7 +141,7 @@ const CV: React.FC = () => {
content: (
<div className="text-gray-300">
{cvData.education.map((edu, id) => (
<div key={id} className="mb-4">
<div key={id} className="mb-6">
<h3 className="font-semibold text-white">
{edu.period} - {edu.institution}
</h3>
Expand Down

0 comments on commit 12d5949

Please sign in to comment.