Skip to content

Commit

Permalink
Fix image
Browse files Browse the repository at this point in the history
  • Loading branch information
allevo committed Nov 22, 2024
1 parent 134b99c commit 2dca63e
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions packages/website/src/pages/blog/Blog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,19 @@ export async function Blog(
<Heading className={"text-center"} level={1}>
There's a New Framework in Town!
</Heading>
<img
src="/images/blog/2024-11-24-theres-a-new-framework-in-town.svg"
alt="the amazing SeqFlow logo"
style={{ borderRadius: "15px", border: "1px solid #2b2f35" }}
/>
<div style={{ width: "100%", aspectRatio: "1920 / 1080" }}>
<img
src="/images/blog/2024-11-24-theres-a-new-framework-in-town.svg"
alt="the amazing SeqFlow logo"
style={{
borderRadius: "15px",
border: "1px solid #2b2f35",
width: "100%",
height: "100%",
objectFit: "cover",
}}
/>
</div>
{element}
</Prose>,
]);
Expand Down

0 comments on commit 2dca63e

Please sign in to comment.