Add settings pages & header

This commit is contained in:
MotorTruck1221
2025-04-05 20:04:58 -06:00
parent 584ec7e215
commit 415af11053
8 changed files with 65 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { Props } from "astro";
interface SettingsProps extends Props {
active: 'appearance' | 'credits' | 'links' | 'proxy';
}
export type { SettingsProps };