feat: enhance contact form security and add animated hero

This commit is contained in:
badblocks 2025-07-19 22:59:05 -07:00
parent ea18dcdb8e
commit 8497cd819d
No known key found for this signature in database
19 changed files with 320 additions and 112 deletions

View file

@ -1,6 +1,11 @@
// @ts-check
import withNuxt from '.nuxt/eslint.config.mjs'
import { fileURLToPath } from "url";
import { dirname, resolve } from "path";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export default withNuxt(
// Your custom configs here
)
const { withNuxt } = await import(
resolve(__dirname, ".nuxt/eslint.config.mjs")
);
export default withNuxt([eslintPluginPrettierRecommended]);