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> <Dark>
<img <img
className="h-11 w-auto" className="h-11 w-auto"
it
src="/design/logo/svg/Mesh_Logo_White.svg" src="/design/logo/svg/Mesh_Logo_White.svg"
alt="Meshtastic Logo" alt="Meshtastic Logo"
/> />
@ -59,7 +58,6 @@ const TwoPointZero = (): JSX.Element => {
<Light> <Light>
<img <img
className="h-11 w-auto" className="h-11 w-auto"
it
src="/design/logo/svg/Mesh_Logo_Black.svg" src="/design/logo/svg/Mesh_Logo_Black.svg"
alt="Meshtastic Logo" alt="Meshtastic Logo"
/> />
@ -67,7 +65,10 @@ const TwoPointZero = (): JSX.Element => {
</div> </div>
<div className="mt-20"> <div className="mt-20">
<div> <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"> <span className="rounded bg-rose-50 px-2.5 py-1 text-sm font-semibold text-rose-500">
What's new What's new
</span> </span>

View file

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