chore(website): reimplement download button

This commit is contained in:
Elian Doran
2025-09-26 23:28:58 +03:00
parent 772d4ac5a1
commit 68ef6ea142
6 changed files with 36 additions and 34 deletions

View File

@@ -1,4 +1,5 @@
import { useLocation } from 'preact-iso';
import DownloadButton from './DownloadButton';
export function Header() {
const { url } = useLocation();
@@ -16,6 +17,8 @@ export function Header() {
404
</a>
</nav>
<DownloadButton />
</div>
</header>
);