Skip to content

Commit

Permalink
feat: update banner dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyrusso committed Sep 22, 2023
1 parent 7312ed9 commit 2684621
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified public/img/ideation_banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ interface BannerProps {

function Banner({ image, alt, title, description }: BannerProps) {
return (
<div className="card w-full h-[320px] bg-accent-content flex flex-row px-20">
<Image src={image} alt={alt} width={454} height={300} priority={false} />
<div className="card w-full max-h-[320px] bg-accent-content flex flex-row px-20 py-10 box-border">
<Image src={image} alt={alt} width={454} height={200} priority={false} />
<div className="flex flex-col justify-center pl-24 gap-y-3.5">
<h3 className="text-3xl font-bold text-black">{title}</h3>
<p className="text-lg font-medium text-black">{description}</p>
Expand Down

0 comments on commit 2684621

Please sign in to comment.