24 lines
484 B
Plaintext
24 lines
484 B
Plaintext
---
|
|
title: Fedora Workstation
|
|
---
|
|
|
|
import { Picture } from "astro:assets";
|
|
import ChoiceList from "@/components/ChoiceList.astro";
|
|
import fedoraWorkstation from "@/assets/imgs/Fedora/fedora42_workstation.png";
|
|
|
|
<Picture
|
|
src={fedoraWorkstation}
|
|
formats={["avif"]}
|
|
width="1280"
|
|
alt="Fedora Workstation 42"
|
|
/>
|
|
|
|
<ChoiceList>
|
|
<a href="/en/distro/fedora/7/" class="button">
|
|
Back
|
|
</a>
|
|
<a href="/en/distro/fedora/workstation/0/" class="button">
|
|
This is the one
|
|
</a>
|
|
</ChoiceList>
|