feat: Added favicon
All checks were successful
Build Gameflow Site / build (push) Successful in 55s

This commit is contained in:
Simeon Radivoev 2026-05-07 01:26:52 +03:00
parent 5aa3f672fe
commit 23c0de6900
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
3 changed files with 3 additions and 6 deletions

1
.astro/types.d.ts vendored
View file

@ -1,2 +1 @@
/// <reference types="astro/client" />
/// <reference path="content.d.ts" />

View file

@ -34,7 +34,7 @@ import { Image } from "astro:assets";
</p>
<div class="flex flex-wrap gap-2 justify-center md:justify-start">
<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}
target="_blank"
>

View file

@ -1,8 +1,6 @@
---
import "../assets/style.css";
// 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.
import favicon from "../assets/favicon.ico";
---
<!doctype html>
@ -10,7 +8,7 @@ import "../assets/style.css";
<head>
<meta charset="UTF-8" />
<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} />
<link
href="https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap"