feat: migrate landing page to TypeScript and fix auth cookies

- Migrate all apps/website components from JS/JSX to TypeScript/TSX
- Add blog pages (layout, listing, slug) in TypeScript
- Add tsconfig.json and tailwind.config.mjs to website
- Fix cookie domain handling in vite/App.tsx (set .useautumn.com in prod)
- Update auth.ts, afterSessionCreated, afterSessionDeleted

Made-with: Cursor
This commit is contained in:
amianthus
2026-04-16 17:52:14 +01:00
parent 39fbd46d4f
commit d8a4979fe4
65 changed files with 5547 additions and 4672 deletions

View File

@@ -0,0 +1,7 @@
import typography from "@tailwindcss/typography";
const config = {
plugins: [typography],
};
export default config;