re-did 404 images and added mapping, re-did menu/search components for auth, removed unneeded files and cleaned up css

This commit is contained in:
zach
2026-02-26 18:08:08 -05:00
parent 187da306f0
commit d149312f3d
1046 changed files with 4594 additions and 1042 deletions

View File

@@ -1,9 +1,16 @@
import { defineConfig } from "astro/config";
import node from "@astrojs/node";
import clerk from "@clerk/astro";
import { dark } from '@clerk/themes'
export default defineConfig({
integrations: [clerk()],
integrations: [
clerk({
appearance: {
theme: dark,
},
}),
],
adapter: node({ mode: "standalone" }),
output: "server",
});