This commit is contained in:
parent
5aa3f672fe
commit
23c0de6900
3 changed files with 3 additions and 6 deletions
1
.astro/types.d.ts
vendored
1
.astro/types.d.ts
vendored
|
|
@ -1,2 +1 @@
|
||||||
/// <reference types="astro/client" />
|
/// <reference types="astro/client" />
|
||||||
/// <reference path="content.d.ts" />
|
|
||||||
|
|
@ -34,7 +34,7 @@ import { Image } from "astro:assets";
|
||||||
</p>
|
</p>
|
||||||
<div class="flex flex-wrap gap-2 justify-center md:justify-start">
|
<div class="flex flex-wrap gap-2 justify-center md:justify-start">
|
||||||
<a
|
<a
|
||||||
class="bg-primary rounded-full text-primary-content p-2 px-4 hover:bg-accent hover:text-accent-content cursor-pointer flex gap-2"
|
class="bg-primary rounded-full text-primary-content p-2 px-4 hover:bg-secondary hover:text-secondary-content cursor-pointer flex gap-2"
|
||||||
href={pkg.downloads}
|
href={pkg.downloads}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
---
|
---
|
||||||
import "../assets/style.css";
|
import "../assets/style.css";
|
||||||
|
import favicon from "../assets/favicon.ico";
|
||||||
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
|
|
||||||
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
|
|
@ -10,7 +8,7 @@ import "../assets/style.css";
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href={favicon} />
|
||||||
<meta name="generator" content={Astro.generator} />
|
<meta name="generator" content={Astro.generator} />
|
||||||
<link
|
<link
|
||||||
href="https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap"
|
href="https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue