No description
Find a file
Jan-Peter Dhalle 063d6da34d Update styling to match jp_focus design system
- Replace OKLCH colors with jp_focus HEX color palette
- Change primary font from LINESeedSans to JetBrains Mono
- Remove all border radius (set to 0 for sharp corners)
- Update button component: 2px borders, adjusted heights, new colors
- Update input component: remove rounded corners, adjust focus states
- Update dialog component: 2px borders, remove rounded corners
- Change background from sidebar to white

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-14 00:00:51 +01:00
public big rework 2025-06-02 17:39:52 +02:00
requests big rework 2025-06-02 17:39:52 +02:00
src Update styling to match jp_focus design system 2026-01-14 00:00:51 +01:00
.env Start implementing authentik 2025-12-06 23:42:57 +01:00
.gitignore working auth 2025-12-07 00:54:31 +01:00
biome.json migrate top new tools, format 2025-12-06 19:12:51 +01:00
bun.lock add missing tw-animate-css dep 2025-12-07 01:15:07 +01:00
components.json copy styles from jp-focus project 2025-12-06 19:12:51 +01:00
docker-compose.yml add dockercompose and build args 2025-03-02 02:40:53 +01:00
Dockerfile nginx try_files 2025-12-08 00:57:41 +01:00
index.html favicon, text 2025-03-02 02:50:54 +01:00
Jenkinsfile also upload dated tag 2025-12-07 22:48:37 +01:00
nginx.conf nginx try_files 2025-12-08 00:57:41 +01:00
package.json add missing tw-animate-css dep 2025-12-07 01:15:07 +01:00
README.md Initial Commit 2025-03-01 22:55:01 +01:00
tsconfig.json migrate top new tools, format 2025-12-06 19:12:51 +01:00
vite.config.ts cleanup + authentik absolute url 2025-12-07 15:48:16 +01:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'

export default tseslint.config({
  // Set the react version
  settings: { react: { version: '18.3' } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
  },
})