Initial commit: CoreX Dashboard mit Zeiterfassung und Kundenverwaltung
Showing
.gitignore
0 → 100644
README.md
0 → 100644
app/api/customers/route.ts
0 → 100644
app/api/test/route.ts
0 → 100644
app/api/users/route.ts
0 → 100644
app/favicon.ico
0 → 100644
25.3 KB
app/globals.css
0 → 100644
app/kunden/[id]/page.tsx
0 → 100644
app/kunden/page.tsx
0 → 100644
app/layout.tsx
0 → 100644
app/page.tsx
0 → 100644
app/zeiterfassung/page.tsx
0 → 100644
components/Logo.tsx
0 → 100644
components/theme-toggle.tsx
0 → 100644
components/ui/button.tsx
0 → 100644
components/ui/card.tsx
0 → 100644
components/ui/input.tsx
0 → 100644
components/ui/label.tsx
0 → 100644
components/ui/select.tsx
0 → 100644
components/ui/textarea.tsx
0 → 100644
eslint.config.mjs
0 → 100644
lib/prisma.ts
0 → 100644
lib/utils.ts
0 → 100644
middleware.ts
0 → 100644
next.config.ts
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | ||
| "name": "corex-dashboard", | ||
| "version": "0.1.0", | ||
| "private": true, | ||
| "scripts": { | ||
| "dev": "next dev", | ||
| "build": "next build", | ||
| "start": "next start", | ||
| "lint": "eslint" | ||
| }, | ||
| "dependencies": { | ||
| "@prisma/client": "^7.2.0", | ||
| "@radix-ui/react-label": "^2.1.8", | ||
| "@radix-ui/react-slot": "^1.2.4", | ||
| "class-variance-authority": "^0.7.1", | ||
| "clsx": "^2.1.1", | ||
| "lucide-react": "^0.562.0", | ||
| "next": "16.1.1", | ||
| "next-themes": "^0.4.6", | ||
| "prisma": "^7.2.0", | ||
| "react": "19.2.3", | ||
| "react-dom": "19.2.3", | ||
| "tailwind-merge": "^3.4.0", | ||
| "tw-animate-css": "^1.4.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@tailwindcss/postcss": "^4", | ||
| "@types/node": "^20", | ||
| "@types/react": "^19", | ||
| "@types/react-dom": "^19", | ||
| "eslint": "^9", | ||
| "eslint-config-next": "16.1.1", | ||
| "tailwindcss": "^4", | ||
| "typescript": "^5" | ||
| } | ||
| } |
postcss.config.mjs
0 → 100644
prisma.config.ts
0 → 100644
prisma/schema.prisma
0 → 100644
public/branding/favicon.svg
0 → 100644
public/branding/og-image.svg
0 → 100644
public/branding/x-icon.svg
0 → 100644
public/file.svg
0 → 100644
public/globe.svg
0 → 100644
public/logo.png
0 → 100644
13.6 KB
public/next.svg
0 → 100644
public/vercel.svg
0 → 100644
public/window.svg
0 → 100644
tsconfig.json
0 → 100644