Skip to content

Commit

Permalink
Fix image dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddossett committed Aug 5, 2024
1 parent b0d4508 commit 4064027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Project: React.FC<ProjectProps> = ({
<Image
src={image}
alt={title}
width={800}
height={400}
width="1600"
height="800"
className="rounded-md"
/>
</div>
Expand All @@ -28,7 +28,7 @@ const Project: React.FC<ProjectProps> = ({

export const Projects: React.FC = () => {
return (
<div className="flex-col flex-grow">
<div className="flex-col">
<h2 className="mt-0 font-base font-semibold text-blue-600 dark:text-blue-400">
Recent Projects
</h2>
Expand Down

0 comments on commit 4064027

Please sign in to comment.