feat: Upgrade to Astro with full PDPA compliance

PDPA Features:
 Cookie consent banner
 Consent logging API
 Admin dashboard
 Privacy Policy
 Terms & Conditions

Technical:
 Astro 5.x + Tailwind v4
 Docker on port 80
 SQLite database
 15 pages built

Ready for Easypanel deployment.
This commit is contained in:
Kunthawat
2026-03-12 10:01:04 +07:00
parent 668f69048f
commit 77ac4d2d05
13719 changed files with 307487 additions and 25765 deletions

16
node_modules/mdast-util-to-hast/lib/handlers/text.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
/**
* Turn an mdast `text` node into hast.
*
* @param {State} state
* Info passed around.
* @param {MdastText} node
* mdast node.
* @returns {HastElement | HastText}
* hast node.
*/
export function text(state: State, node: MdastText): HastElement | HastText;
import type { State } from '../state.js';
import type { Text as MdastText } from 'mdast';
import type { Element as HastElement } from 'hast';
import type { Text as HastText } from 'hast';
//# sourceMappingURL=text.d.ts.map