From 16cb9bd89ae33bd8ee1db16aac44a875f2ee2fba Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Thu, 29 Jan 2026 14:09:23 -0500 Subject: [PATCH] refactor: remove old frontend directory structure - Remove cmd/server/static/ (moved to web/) - Remove tailwind.config.js (converted to .ts) - Clean up obsolete files after reorganization --- cmd/server/static/input.css | 5 ----- tailwind.config.js | 36 ------------------------------------ 2 files changed, 41 deletions(-) delete mode 100644 cmd/server/static/input.css delete mode 100644 tailwind.config.js diff --git a/cmd/server/static/input.css b/cmd/server/static/input.css deleted file mode 100644 index 75575df..0000000 --- a/cmd/server/static/input.css +++ /dev/null @@ -1,5 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -/* Custom theme variables are handled in CSS custom properties in templates */ \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index 35a6ee9..0000000 --- a/tailwind.config.js +++ /dev/null @@ -1,36 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: [ - "./templates/**/*.{templ,html}", - "./cmd/server/static/**/*.{html,js}" - ], - theme: { - extend: { - colors: { - primary: { - DEFAULT: '#7aa2f7', - 50: '#f0f9ff', - 100: '#e0f2fe', - 200: '#bae6fd', - 300: '#7dd3fc', - 400: '#38bdf8', - 500: '#0ea5e9', - 600: '#0284c7', - 700: '#0369a1', - 800: '#075985', - 900: '#0c4a6e', - }, - // Add your custom theme colors - 'bg-primary': '#1a1b26', - 'bg-secondary': '#16161e', - 'text-primary': '#a9b1d6', - 'text-secondary': '#565f89', - 'accent': '#7aa2f7', - 'border': '#414868', - } - } - }, - plugins: [ - require('@tailwindcss/forms'), - ], -} \ No newline at end of file