initial card changes

This commit is contained in:
Foster Irwin 2022-11-08 16:42:11 -07:00
parent 4e8371375f
commit a2ecf135d4

View file

@ -104,71 +104,86 @@ const Firmware = (): JSX.Element => {
<div className="flex w-1/5 bg-gradient-to-r from-rose-500 to-primary"> <div className="flex w-1/5 bg-gradient-to-r from-rose-500 to-primary">
<ComputerDesktopIcon className="m-auto h-20" /> <ComputerDesktopIcon className="m-auto h-20" />
</div> </div>
<div className="flex w-full flex-col bg-primary lg:flex-row"> <div className="flex w-full flex-col columns-3 bg-primary lg:flex-row">
<div className="flex p-4 lg:w-1/3"> <div className="card m-4 border-2 border-secondary">
<div className="flex flex-grow rounded-md border-2 border-secondary bg-primary py-4 shadow-md hover:brightness-90 lg:py-0"> <div className="card__header">
<h3>Apple</h3>
</div>
<div className="card__body flex items-center">
<div className="m-auto"> <div className="m-auto">
<FaApple className="h-20 w-20" /> <FaApple className="h-20 w-20" />
</div> </div>
<div className="m-auto flex flex-col gap-3"> </div>
<h2>Apple</h2> <div className="card__body">
<a Available on MacOS & iOS. Requires MacOS Ventura or iOS 16+.
target="_blank" </div>
rel="noopener noreferrer" <div className="card__footer mt-auto">
href="https://testflight.apple.com/join/c8nNl8q1" <a
className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200" target="_blank"
> rel="noopener noreferrer"
App Store href="https://testflight.apple.com/join/c8nNl8q1"
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" /> className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200"
</a> >
</div> App Store
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" />
</a>
</div> </div>
</div> </div>
<div className="flex p-4 lg:w-1/3"> <div className="card m-4 border-2 border-secondary">
<div className="relative flex flex-grow rounded-md border-2 border-secondary bg-primary py-4 shadow-md hover:brightness-90 lg:py-0"> <div className="card__header">
<h3>Android</h3>
</div>
<div className="card__body flex items-center">
<div className="m-auto"> <div className="m-auto">
<FaAndroid className="h-20 w-20" /> <FaAndroid className="h-20 w-20" />
</div> </div>
<div className="m-auto flex flex-col gap-3"> </div>
<h2>Android</h2> <div className="card__body">
<a Sideloading also available.
className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200" </div>
target="_blank" <div className="card__footer mt-auto">
rel="noopener noreferrer" <a
href="https://meshtastic.org/docs/software/android/android-installation" target="_blank"
> rel="noopener noreferrer"
F-Droid href="https://meshtastic.org/docs/software/android/android-installation"
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" /> className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200"
</a> >
<a F-Droid
target="_blank" <ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" />
rel="noopener noreferrer" </a>
href="https://play.google.com/store/apps/details?id=com.geeksville.mesh&referrer=utm_source=downloads-page" <a
className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200" target="_blank"
> rel="noopener noreferrer"
Play Store href="https://play.google.com/store/apps/details?id=com.geeksville.mesh&referrer=utm_source=downloads-page"
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" /> className="mt-4 flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200"
</a> >
</div> Play Store
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" />
</a>
</div> </div>
</div> </div>
<div className="flex p-4 lg:w-1/3"> <div className="card m-4 border-2 border-secondary">
<div className="flex flex-grow rounded-md border-2 border-secondary bg-primary py-4 shadow-md hover:brightness-90 lg:py-0"> <div className="card__header">
<h3>Web</h3>
</div>
<div className="card__body flex items-center">
<div className="m-auto"> <div className="m-auto">
<GlobeAltIcon className="h-20 w-20" /> <GlobeAltIcon className="h-20 w-20" />
</div> </div>
<div className="m-auto flex flex-col gap-3"> </div>
<h2>Web</h2> <div className="card__body">
<a Requires Chromium based browsers.
target="_blank" </div>
rel="noopener noreferrer" <div className="card__footer mt-auto">
href="https://client.meshtastic.org" <a
className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200" target="_blank"
> rel="noopener noreferrer"
client.meshtastic.org href="https://client.meshtastic.org"
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" /> className="m-auto flex rounded-lg border-4 border-transparent bg-accent p-1 font-semibold text-black shadow-md hover:text-black hover:brightness-110 active:border-green-200"
</a> >
</div> client.meshtastic.org
<ArrowTopRightOnSquareIcon className="m-auto ml-2 h-4" />
</a>
</div> </div>
</div> </div>
</div> </div>