added website

This commit is contained in:
2026-07-17 01:21:56 -05:00
parent fac8a535de
commit 4285d0ae4a
29 changed files with 1633 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// Generated by `bun init`
declare module "*.svg" {
/**
* A path to the SVG file
*/
const path: `${string}.svg`;
export = path;
}
declare module "*.css" {}
declare module "*.module.css" {
/**
* A record of class names to their corresponding CSS module classes
*/
const classes: { readonly [key: string]: string };
export = classes;
}