minor fixes

This commit is contained in:
Sacha Weatherstone 2023-05-12 11:57:04 +10:00
parent 2ee6a40939
commit 8c1e6b1960
2 changed files with 7 additions and 6 deletions

View file

@ -51,7 +51,6 @@ const TwoPointZero = (): JSX.Element => {
<Dark>
<img
className="h-11 w-auto"
it
src="/design/logo/svg/Mesh_Logo_White.svg"
alt="Meshtastic Logo"
/>
@ -59,7 +58,6 @@ const TwoPointZero = (): JSX.Element => {
<Light>
<img
className="h-11 w-auto"
it
src="/design/logo/svg/Mesh_Logo_Black.svg"
alt="Meshtastic Logo"
/>
@ -67,7 +65,10 @@ const TwoPointZero = (): JSX.Element => {
</div>
<div className="mt-20">
<div>
<a href="#" className="inline-flex space-x-4">
<a
href="https://github.com/meshtastic/firmware/releases"
className="inline-flex space-x-4"
>
<span className="rounded bg-rose-50 px-2.5 py-1 text-sm font-semibold text-rose-500">
What's new
</span>

View file

@ -38,10 +38,10 @@ export const DownloadCard = ({
) : (
<div>
<a href={url}>
<img alt="img1" style={{ height: "4rem" }} src={imgUrl}></img>
<img alt="img1" style={{ height: "4rem" }} src={imgUrl} />
</a>
<a href={url2}>
<img alt="img2" style={{ height: "4rem" }} src={imgUrl2}></img>
<img alt="img2" style={{ height: "4rem" }} src={imgUrl2} />
</a>
</div>
)}
@ -96,7 +96,7 @@ export const PlaceholderCard = (): JSX.Element => {
backgroundColor: "gray",
height: "3rem",
display: "flex",
jusifyContent: "center",
justifyContent: "center",
alignItems: "center",
}}
/>