added auth and made some sizeable updates to mobile layout

This commit is contained in:
zach
2026-02-25 18:47:33 -05:00
parent 5d9655e196
commit d7c5a69d1d
10 changed files with 915 additions and 47 deletions

View File

@@ -1,6 +1,9 @@
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig } from "astro/config";
import node from "@astrojs/node";
import clerk from "@clerk/astro";
// https://astro.build/config
export default defineConfig({
integrations: [clerk()],
adapter: node({ mode: "standalone" }),
output: "server",
});