Add Next.js + shadcn/ui scaffold with deps

- Next.js 15 App Router, TypeScript, Tailwind CSS
- shadcn/ui components: button, input, select, textarea, dialog, tabs, table, card, badge, label, separator, dropdown-menu, form, sheet, tooltip
- Runtime deps: @tanstack/react-table, zod, react-hook-form, @hookform/resolvers, lucide-react, date-fns
This commit is contained in:
Gjermund Høsøien Wiggen
2026-06-07 21:55:54 +02:00
parent 974df8a9f1
commit 9b1af0b7b3
35 changed files with 11677 additions and 0 deletions

7
web/postcss.config.mjs Normal file
View File

@@ -0,0 +1,7 @@
const config = {
plugins: {
"@tailwindcss/postcss": {},
},
};
export default config;