Initial commit

This commit is contained in:
2026-02-02 22:47:52 +03:00
committed by GitHub
commit f53016aeda
239 changed files with 84360 additions and 0 deletions

15
src/constants/icon.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { Favicon } from "@/types/config.ts";
export const defaultFavicons: Favicon[] = [
{
src: "/favicon/icon-light.ico",
theme: "light",
sizes: "96x96",
},
{
src: "/favicon/icon-dark.ico",
theme: "dark",
sizes: "96x96",
},
];