diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index 3f60dc2..c1401b2 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -2,6 +2,8 @@
"recommendations": [
"esbenp.prettier-vscode",
"vivaxy.vscode-conventional-commits",
- "dbaeumer.vscode-eslint"
+ "dbaeumer.vscode-eslint",
+ "bradlc.vscode-tailwindcss",
+ "bourhaouta.tailwindshades"
]
}
diff --git a/components.json b/components.json
new file mode 100644
index 0000000..23385eb
--- /dev/null
+++ b/components.json
@@ -0,0 +1,21 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": true,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "src/app/globals.css",
+ "baseColor": "gray",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ },
+ "iconLibrary": "lucide"
+}
diff --git a/package.json b/package.json
index dc3c2cf..3133b88 100644
--- a/package.json
+++ b/package.json
@@ -15,21 +15,31 @@
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
+ "@radix-ui/react-slot": "^1.2.2",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "^2.1.1",
+ "lucide-react": "^0.508.0",
"next": "15.3.2",
"next-auth": "^5.0.0-beta.25",
+ "next-themes": "^0.4.6",
"react": "^19.0.0",
- "react-dom": "^19.0.0"
+ "react-dom": "^19.0.0",
+ "tailwind-merge": "^3.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
+ "@tailwindcss/postcss": "4.1.5",
"@types/node": "22.15.17",
"@types/react": "19.1.3",
"@types/react-dom": "19.1.3",
"eslint": "9.26.0",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "10.1.5",
+ "postcss": "8.5.3",
"prettier": "3.5.3",
"prisma": "6.7.0",
+ "tailwindcss": "4.1.5",
+ "tw-animate-css": "1.2.9",
"typescript": "5.8.3"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
diff --git a/postcss.config.mjs b/postcss.config.mjs
new file mode 100644
index 0000000..4d22840
--- /dev/null
+++ b/postcss.config.mjs
@@ -0,0 +1,8 @@
+/** @type {import('tailwindcss').Config} */
+const config = {
+ plugins: {
+ '@tailwindcss/postcss': {},
+ },
+};
+
+export default config;
diff --git a/src/app/globals.css b/src/app/globals.css
index e37b231..322500b 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -1,78 +1,215 @@
+@import 'tailwindcss';
+@import 'tw-animate-css';
+
+@custom-variant dark (&:is(.dark *));
+
:root {
- --background: #ffffff;
- --foreground: #3a3a3a;
+ --radius: 0.625rem;
- --neutral: #808080;
+ --background: oklch(1 0 0);
- --primary-50: rgba(59, 130, 246, 0.5);
- --primary-75: rgba(59, 130, 246, 0.75);
- --primary-100: rgba(59, 130, 246, 1);
+ --foreground: oklch(0.13 0.028 261.692);
- --warning-50: rgba(245, 158, 11, 0.5);
- --warning-75: rgba(245, 158, 11, 0.75);
- --warning-100: rgba(245, 158, 11, 1);
+ --card: oklch(1 0 0);
- --success-50: rgba(22, 163, 74, 0.5);
- --success-75: rgba(22, 163, 74, 0.75);
- --success-100: rgba(22, 163, 74, 1);
+ --card-foreground: oklch(0.13 0.028 261.692);
- --danger-50: rgba(220, 38, 38, 0.5);
- --danger-75: rgba(220, 38, 38, 0.75);
- --danger-100: rgba(220, 38, 38, 1);
+ --popover: oklch(1 0 0);
- --button-text-size: 18px;
+ --popover-foreground: oklch(0.13 0.028 261.692);
- --neutral-50: rgb(204, 204, 204, 0.5);
- --neutral-75: rgb(204, 204, 204, 0.75);
- --neutral-100: rgb(204, 204, 204, 1);
+ --primary: oklch(0.21 0.034 264.665);
- --textbox-50: rgb(204, 204, 204, 0.5);
- --textbox-75: rgb(204, 204, 204, 0.75);
- --textbox-100: rgb(204, 204, 204, 1);
+ --primary-foreground: oklch(0.985 0.002 247.839);
- --base-1: #f3f3f3;
+ --secondary: oklch(0.967 0.003 264.542);
+
+ --secondary-foreground: oklch(0.21 0.034 264.665);
+
+ --muted: oklch(0.967 0.003 264.542);
+
+ --muted-foreground: oklch(0.551 0.027 264.364);
+
+ --accent: oklch(0.967 0.003 264.542);
+
+ --accent-foreground: oklch(0.21 0.034 264.665);
+
+ --destructive: oklch(0.577 0.245 27.325);
+
+ --border: oklch(0.928 0.006 264.531);
+
+ --input: oklch(0.928 0.006 264.531);
+
+ --ring: oklch(0.707 0.022 261.325);
+
+ --chart-1: oklch(0.646 0.222 41.116);
+
+ --chart-2: oklch(0.6 0.118 184.704);
+
+ --chart-3: oklch(0.398 0.07 227.392);
+
+ --chart-4: oklch(0.828 0.189 84.429);
+
+ --chart-5: oklch(0.769 0.188 70.08);
+
+ --sidebar: oklch(0.985 0.002 247.839);
+
+ --sidebar-foreground: oklch(0.13 0.028 261.692);
+
+ --sidebar-primary: oklch(0.21 0.034 264.665);
+
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
+
+ --sidebar-accent: oklch(0.967 0.003 264.542);
+
+ --sidebar-accent-foreground: oklch(0.21 0.034 264.665);
+
+ --sidebar-border: oklch(0.928 0.006 264.531);
+
+ --sidebar-ring: oklch(0.707 0.022 261.325);
}
-@media (prefers-color-scheme: dark) {
- :root {
- --background: #0a0a0a;
- --foreground: #e5e7eb;
+@theme inline {
+ --radius-sm: calc(var(--radius) - 4px);
- --textbox-50: rgb(75, 85, 99, 0.5);
- --textbox-75: rgb(75, 85, 99, 0.75);
- --textbox-100: rgb(75, 85, 99, 1);
+ --radius-md: calc(var(--radius) - 2px);
- --base-1: #111111;
- }
-}
-
-html,
-body {
- max-width: 100vw;
- overflow-x: hidden;
-}
-
-body {
- color: var(--foreground);
- background: var(--background);
- font-family: Arial, Helvetica, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-* {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
-}
-
-a {
- color: inherit;
- text-decoration: none;
-}
-
-@media (prefers-color-scheme: dark) {
- html {
- color-scheme: dark;
+ --radius-lg: var(--radius);
+
+ --radius-xl: calc(var(--radius) + 4px);
+
+ --color-background: var(--background);
+
+ --color-foreground: var(--foreground);
+
+ --color-card: var(--card);
+
+ --color-card-foreground: var(--card-foreground);
+
+ --color-popover: var(--popover);
+
+ --color-popover-foreground: var(--popover-foreground);
+
+ --color-primary: var(--primary);
+
+ --color-primary-foreground: var(--primary-foreground);
+
+ --color-secondary: var(--secondary);
+
+ --color-secondary-foreground: var(--secondary-foreground);
+
+ --color-muted: var(--muted);
+
+ --color-muted-foreground: var(--muted-foreground);
+
+ --color-accent: var(--accent);
+
+ --color-accent-foreground: var(--accent-foreground);
+
+ --color-destructive: var(--destructive);
+
+ --color-border: var(--border);
+
+ --color-input: var(--input);
+
+ --color-ring: var(--ring);
+
+ --color-chart-1: var(--chart-1);
+
+ --color-chart-2: var(--chart-2);
+
+ --color-chart-3: var(--chart-3);
+
+ --color-chart-4: var(--chart-4);
+
+ --color-chart-5: var(--chart-5);
+
+ --color-sidebar: var(--sidebar);
+
+ --color-sidebar-foreground: var(--sidebar-foreground);
+
+ --color-sidebar-primary: var(--sidebar-primary);
+
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
+
+ --color-sidebar-accent: var(--sidebar-accent);
+
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
+
+ --color-sidebar-border: var(--sidebar-border);
+
+ --color-sidebar-ring: var(--sidebar-ring);
+}
+
+.dark {
+ --background: oklch(0.13 0.028 261.692);
+
+ --foreground: oklch(0.985 0.002 247.839);
+
+ --card: oklch(0.21 0.034 264.665);
+
+ --card-foreground: oklch(0.985 0.002 247.839);
+
+ --popover: oklch(0.21 0.034 264.665);
+
+ --popover-foreground: oklch(0.985 0.002 247.839);
+
+ --primary: oklch(0.928 0.006 264.531);
+
+ --primary-foreground: oklch(0.21 0.034 264.665);
+
+ --secondary: oklch(0.278 0.033 256.848);
+
+ --secondary-foreground: oklch(0.985 0.002 247.839);
+
+ --muted: oklch(0.278 0.033 256.848);
+
+ --muted-foreground: oklch(0.707 0.022 261.325);
+
+ --accent: oklch(0.278 0.033 256.848);
+
+ --accent-foreground: oklch(0.985 0.002 247.839);
+
+ --destructive: oklch(0.704 0.191 22.216);
+
+ --border: oklch(1 0 0 / 10%);
+
+ --input: oklch(1 0 0 / 15%);
+
+ --ring: oklch(0.551 0.027 264.364);
+
+ --chart-1: oklch(0.488 0.243 264.376);
+
+ --chart-2: oklch(0.696 0.17 162.48);
+
+ --chart-3: oklch(0.769 0.188 70.08);
+
+ --chart-4: oklch(0.627 0.265 303.9);
+
+ --chart-5: oklch(0.645 0.246 16.439);
+
+ --sidebar: oklch(0.21 0.034 264.665);
+
+ --sidebar-foreground: oklch(0.985 0.002 247.839);
+
+ --sidebar-primary: oklch(0.488 0.243 264.376);
+
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
+
+ --sidebar-accent: oklch(0.278 0.033 256.848);
+
+ --sidebar-accent-foreground: oklch(0.985 0.002 247.839);
+
+ --sidebar-border: oklch(1 0 0 / 10%);
+
+ --sidebar-ring: oklch(0.551 0.027 264.364);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ body {
+ @apply bg-background text-foreground;
}
}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 085d6cb..05f8659 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,3 +1,5 @@
+import { ThemeProvider } from '@/components/theme-provider';
+
import type { Metadata } from 'next';
import './globals.css';
@@ -12,8 +14,17 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
-
-
{children}
+
+
+
+ {children}
+
+
);
}
diff --git a/src/app/login/login.module.css b/src/app/login/login.module.css
deleted file mode 100644
index 73b5f1b..0000000
--- a/src/app/login/login.module.css
+++ /dev/null
@@ -1,30 +0,0 @@
-body:has(.loginContainer) {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100svh;
-}
-
-.loginContainer {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- gap: 1.5rem;
- padding: 2rem;
- width: 300px;
-
- background-color: var(--base-1);
- border-radius: 1rem;
- border: 2px solid var(--foreground);
-}
-
-.loginContainer h1 {
- margin-bottom: 1rem;
-}
-
-.loginContainer form {
- display: flex;
- flex-direction: column;
- gap: 1rem;
-}
diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx
index 9aadba1..b843b45 100644
--- a/src/app/login/page.tsx
+++ b/src/app/login/page.tsx
@@ -3,9 +3,8 @@ import SSOLogin from '@/components/user/sso-login-button';
import LoginForm from '@/components/user/login-form';
import { redirect } from 'next/navigation';
-import style from './login.module.css';
-
import '@/app/globals.css';
+import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
export default async function LoginPage() {
const session = await auth();
@@ -15,16 +14,21 @@ export default async function LoginPage() {
}
return (
-
-
Login
+
+
+
+ Login
+
+
+
-
+
-
-
- {process.env.AUTH_AUTHENTIK_ISSUER && (
-
- )}
+ {process.env.AUTH_AUTHENTIK_ISSUER && (
+
+ )}
+
+
);
}
diff --git a/src/components/button.module.css b/src/components/button.module.css
deleted file mode 100644
index 05fb359..0000000
--- a/src/components/button.module.css
+++ /dev/null
@@ -1,60 +0,0 @@
-.button {
- background-color: var(--color-50);
- border-radius: 16px;
- padding: 10px 20px;
- outline: none;
- border: 2px solid var(--color-100);
- transition: background-color 0.3s ease;
- height: 50px;
-}
-
-.button:hover {
- background-color: var(--color-75);
-}
-
-.button:active {
- background-color: var(--color-100);
-}
-
-.button span {
- color: var(--foreground);
- font-size: var(--button-text-size);
- font-weight: 600;
-}
-
-.icon {
- display: grid;
- grid-template-columns: 25px 1fr;
- gap: 10px;
- align-items: center;
-}
-
-.style_primary {
- --color-50: var(--primary-50);
- --color-75: var(--primary-75);
- --color-100: var(--primary-100);
-}
-
-.style_warning {
- --color-50: var(--warning-50);
- --color-75: var(--warning-75);
- --color-100: var(--warning-100);
-}
-
-.style_success {
- --color-50: var(--success-50);
- --color-75: var(--success-75);
- --color-100: var(--success-100);
-}
-
-.style_danger {
- --color-50: var(--danger-50);
- --color-75: var(--danger-75);
- --color-100: var(--danger-100);
-}
-
-.style_neutral {
- --color-50: var(--neutral-50);
- --color-75: var(--neutral-75);
- --color-100: var(--neutral-100);
-}
diff --git a/src/components/button.tsx b/src/components/button.tsx
deleted file mode 100644
index 87094ad..0000000
--- a/src/components/button.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import style from './button.module.css';
-
-import { IconProp } from '@fortawesome/fontawesome-svg-core';
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-
-export default function Button({
- type,
- children,
- mode = 'primary',
- icon,
- width,
-}: {
- type?: 'button' | 'submit' | 'reset';
- children?: React.ReactNode;
- mode?: 'primary' | 'warning' | 'success' | 'danger' | 'neutral';
- icon?: IconProp;
- width?: number;
-}) {
- if (!icon) {
- return (
-
- );
- } else {
- return (
-
- );
- }
-}
diff --git a/src/components/icon-button.tsx b/src/components/icon-button.tsx
new file mode 100644
index 0000000..8888b6b
--- /dev/null
+++ b/src/components/icon-button.tsx
@@ -0,0 +1,20 @@
+import { Button } from '@/components/ui/button';
+
+import { IconProp } from '@fortawesome/fontawesome-svg-core';
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
+
+export function IconButton({
+ icon,
+ children,
+ ...props
+}: {
+ icon: IconProp;
+ children: React.ReactNode;
+} & React.ComponentProps
) {
+ return (
+
+ );
+}
diff --git a/src/components/labeled-input.module.css b/src/components/labeled-input.module.css
deleted file mode 100644
index 85f46ed..0000000
--- a/src/components/labeled-input.module.css
+++ /dev/null
@@ -1,37 +0,0 @@
-.input,
-.input * {
- box-sizing: border-box;
-}
-
-.input {
- position: relative;
- overflow: visible;
- width: 250px;
-}
-
-.input input {
- width: 100%;
- height: 50px;
- border: 1px solid var(--textbox-75);
- border-radius: 16px;
- padding: 10px 20px;
- background-color: var(--textbox-50);
- color: var(--foreground);
- font-size: 16px;
- transition:
- background-color 0.2s ease,
- border-color 0.2s ease,
- box-shadow 0.2s ease;
-}
-
-.input input:hover {
- background-color: var(--textbox-75);
- border-color: var(--textbox-100);
-}
-
-.input input:focus {
- outline: none;
- background-color: var(--textbox-100);
- border-color: var(--primary-100);
- box-shadow: 0 0 0 2px var(--primary-50);
-}
diff --git a/src/components/labeled-input.tsx b/src/components/labeled-input.tsx
index 48f27fe..af8879e 100644
--- a/src/components/labeled-input.tsx
+++ b/src/components/labeled-input.tsx
@@ -1,50 +1,28 @@
-import style from './labeled-input.module.css';
+import { Input } from '@/components/ui/input';
export default function LabeledInput({
type,
- width,
label,
placeholder,
value,
}: {
type: 'text' | 'email' | 'password';
- width?: number;
- label?: string;
+ label: string;
placeholder?: string;
value?: string;
}) {
const randomId = Math.random().toString(36).substring(2, 15);
- if (!label) {
- return (
-
-
-
- );
- } else {
- return (
-
+ );
}
diff --git a/src/components/theme-provider.tsx b/src/components/theme-provider.tsx
new file mode 100644
index 0000000..9bf53d8
--- /dev/null
+++ b/src/components/theme-provider.tsx
@@ -0,0 +1,11 @@
+'use client';
+
+import * as React from 'react';
+import { ThemeProvider as NextThemesProvider } from 'next-themes';
+
+export function ThemeProvider({
+ children,
+ ...props
+}: React.ComponentProps) {
+ return {children};
+}
diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx
new file mode 100644
index 0000000..657477e
--- /dev/null
+++ b/src/components/ui/button.tsx
@@ -0,0 +1,59 @@
+import * as React from 'react';
+import { Slot } from '@radix-ui/react-slot';
+import { cva, type VariantProps } from 'class-variance-authority';
+
+import { cn } from '@/lib/utils';
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
+ {
+ variants: {
+ variant: {
+ default:
+ 'bg-primary text-primary-foreground shadow-xs hover:bg-primary/90',
+ destructive:
+ 'bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
+ outline:
+ 'border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
+ secondary:
+ 'bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80',
+ ghost:
+ 'hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50',
+ link: 'text-primary underline-offset-4 hover:underline',
+ },
+ size: {
+ default: 'h-9 px-4 py-2 has-[>svg]:px-3',
+ sm: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5',
+ lg: 'h-10 rounded-md px-6 has-[>svg]:px-4',
+ icon: 'size-9',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ size: 'default',
+ },
+ },
+);
+
+function Button({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'button'> &
+ VariantProps & {
+ asChild?: boolean;
+ }) {
+ const Comp = asChild ? Slot : 'button';
+
+ return (
+
+ );
+}
+
+export { Button, buttonVariants };
diff --git a/src/components/ui/card.tsx b/src/components/ui/card.tsx
new file mode 100644
index 0000000..32a06b1
--- /dev/null
+++ b/src/components/ui/card.tsx
@@ -0,0 +1,92 @@
+import * as React from 'react';
+
+import { cn } from '@/lib/utils';
+
+function Card({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+function CardHeader({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+function CardTitle({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+function CardDescription({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+function CardAction({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+function CardContent({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+function CardFooter({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ );
+}
+
+export {
+ Card,
+ CardHeader,
+ CardFooter,
+ CardTitle,
+ CardAction,
+ CardDescription,
+ CardContent,
+};
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx
new file mode 100644
index 0000000..485626a
--- /dev/null
+++ b/src/components/ui/input.tsx
@@ -0,0 +1,21 @@
+import * as React from 'react';
+
+import { cn } from '@/lib/utils';
+
+function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
+ return (
+
+ );
+}
+
+export { Input };
diff --git a/src/components/user/login-form.tsx b/src/components/user/login-form.tsx
index 12d1f3e..47e1945 100644
--- a/src/components/user/login-form.tsx
+++ b/src/components/user/login-form.tsx
@@ -1,24 +1,26 @@
import LabeledInput from '@/components/labeled-input';
-import Button from '../button';
+import { Button } from '@/components/ui/button';
export default function LoginForm() {
return (
-
-
-
+
);
}
diff --git a/src/components/user/sso-login-button.tsx b/src/components/user/sso-login-button.tsx
index 272872e..064e2eb 100644
--- a/src/components/user/sso-login-button.tsx
+++ b/src/components/user/sso-login-button.tsx
@@ -1,5 +1,5 @@
import { signIn } from '@/auth';
-import Button from '../button';
+import { IconButton } from '@/components/icon-button';
import { faOpenid } from '@fortawesome/free-brands-svg-icons';
export default function SSOLogin({
@@ -11,14 +11,20 @@ export default function SSOLogin({
}) {
return (
);
}
diff --git a/src/components/user/sso-logout-button.tsx b/src/components/user/sso-logout-button.tsx
index 9a42274..84c4bae 100644
--- a/src/components/user/sso-logout-button.tsx
+++ b/src/components/user/sso-logout-button.tsx
@@ -1,5 +1,5 @@
import { signOut } from '@/auth';
-import Button from '../button';
+import { IconButton } from '@/components/icon-button';
import { faDoorOpen } from '@fortawesome/free-solid-svg-icons';
export function Logout() {
@@ -10,9 +10,9 @@ export function Logout() {
await signOut({ redirectTo: '/login' });
}}
>
-
+
);
}
diff --git a/src/lib/utils.ts b/src/lib/utils.ts
new file mode 100644
index 0000000..2819a83
--- /dev/null
+++ b/src/lib/utils.ts
@@ -0,0 +1,6 @@
+import { clsx, type ClassValue } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
diff --git a/yarn.lock b/yarn.lock
index fa741e0..9135ff9 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,6 +2,11 @@
# yarn lockfile v1
+"@alloc/quick-lru@^5.2.0":
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30"
+ integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==
+
"@auth/core@0.39.0":
version "0.39.0"
resolved "https://registry.yarnpkg.com/@auth/core/-/core-0.39.0.tgz#39468332bdd6d710f859dcfb6597618f6d99efff"
@@ -13,7 +18,7 @@
preact "10.24.3"
preact-render-to-string "6.5.11"
-"@emnapi/core@^1.4.0":
+"@emnapi/core@^1.4.0", "@emnapi/core@^1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.4.3.tgz#9ac52d2d5aea958f67e52c40a065f51de59b77d6"
integrity sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==
@@ -21,14 +26,14 @@
"@emnapi/wasi-threads" "1.0.2"
tslib "^2.4.0"
-"@emnapi/runtime@^1.4.0":
+"@emnapi/runtime@^1.4.0", "@emnapi/runtime@^1.4.3":
version "1.4.3"
resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.4.3.tgz#c0564665c80dc81c448adac23f9dfbed6c838f7d"
integrity sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==
dependencies:
tslib "^2.4.0"
-"@emnapi/wasi-threads@1.0.2":
+"@emnapi/wasi-threads@1.0.2", "@emnapi/wasi-threads@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.0.2.tgz#977f44f844eac7d6c138a415a123818c655f874c"
integrity sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==
@@ -437,6 +442,15 @@
"@emnapi/runtime" "^1.4.0"
"@tybys/wasm-util" "^0.9.0"
+"@napi-rs/wasm-runtime@^0.2.9":
+ version "0.2.9"
+ resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.9.tgz#7278122cf94f3b36d8170a8eee7d85356dfa6a96"
+ integrity sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==
+ dependencies:
+ "@emnapi/core" "^1.4.0"
+ "@emnapi/runtime" "^1.4.0"
+ "@tybys/wasm-util" "^0.9.0"
+
"@next/env@15.3.2":
version "15.3.2"
resolved "https://registry.yarnpkg.com/@next/env/-/env-15.3.2.tgz#7143eafa9b11cfdf3d3c7318b0facb9dfdb2948f"
@@ -564,6 +578,18 @@
dependencies:
"@prisma/debug" "6.7.0"
+"@radix-ui/react-compose-refs@1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz#a2c4c47af6337048ee78ff6dc0d090b390d2bb30"
+ integrity sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==
+
+"@radix-ui/react-slot@^1.2.2":
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.2.2.tgz#18e6533e778a2051edc2ad0773da8e22f03f626a"
+ integrity sha512-y7TBO4xN4Y94FvcWIOIh18fM4R1A8S4q1jhoz4PNzOoHsFcN8pogcFmZrTYAm4F9VRUrWP/Mw7xSKybIeRI+CQ==
+ dependencies:
+ "@radix-ui/react-compose-refs" "1.1.2"
+
"@rtsao/scc@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8"
@@ -586,6 +612,112 @@
dependencies:
tslib "^2.8.0"
+"@tailwindcss/node@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/node/-/node-4.1.5.tgz#3ff2b29c68ad494e64907e3c3c5adc676c0745eb"
+ integrity sha512-CBhSWo0vLnWhXIvpD0qsPephiaUYfHUX3U9anwDaHZAeuGpTiB3XmsxPAN6qX7bFhipyGBqOa1QYQVVhkOUGxg==
+ dependencies:
+ enhanced-resolve "^5.18.1"
+ jiti "^2.4.2"
+ lightningcss "1.29.2"
+ tailwindcss "4.1.5"
+
+"@tailwindcss/oxide-android-arm64@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.5.tgz#c0f8bfbf583990a4eb1d2a141272ad1172c59c03"
+ integrity sha512-LVvM0GirXHED02j7hSECm8l9GGJ1RfgpWCW+DRn5TvSaxVsv28gRtoL4aWKGnXqwvI3zu1GABeDNDVZeDPOQrw==
+
+"@tailwindcss/oxide-darwin-arm64@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.5.tgz#d6210f64850df542693b829255fcd195b682cf46"
+ integrity sha512-//TfCA3pNrgnw4rRJOqavW7XUk8gsg9ddi8cwcsWXp99tzdBAZW0WXrD8wDyNbqjW316Pk2hiN/NJx/KWHl8oA==
+
+"@tailwindcss/oxide-darwin-x64@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.5.tgz#81559aac8f0a3fe746724179a0aaf80cf90db690"
+ integrity sha512-XQorp3Q6/WzRd9OalgHgaqgEbjP3qjHrlSUb5k1EuS1Z9NE9+BbzSORraO+ecW432cbCN7RVGGL/lSnHxcd+7Q==
+
+"@tailwindcss/oxide-freebsd-x64@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.5.tgz#2821586b9e865f4857f7f82fe52ff1bc64f00cd2"
+ integrity sha512-bPrLWbxo8gAo97ZmrCbOdtlz/Dkuy8NK97aFbVpkJ2nJ2Jo/rsCbu0TlGx8joCuA3q6vMWTSn01JY46iwG+clg==
+
+"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.5.tgz#b01ec9f6f1ab885e8809aed6c96cc1344eb46195"
+ integrity sha512-1gtQJY9JzMAhgAfvd/ZaVOjh/Ju/nCoAsvOVJenWZfs05wb8zq+GOTnZALWGqKIYEtyNpCzvMk+ocGpxwdvaVg==
+
+"@tailwindcss/oxide-linux-arm64-gnu@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.5.tgz#31261910d463fee74ff747f9d01389157245d8ed"
+ integrity sha512-dtlaHU2v7MtdxBXoqhxwsWjav7oim7Whc6S9wq/i/uUMTWAzq/gijq1InSgn2yTnh43kR+SFvcSyEF0GCNu1PQ==
+
+"@tailwindcss/oxide-linux-arm64-musl@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.5.tgz#81cc66a53737c7a54409d080c1b96030ed0470d3"
+ integrity sha512-fg0F6nAeYcJ3CriqDT1iVrqALMwD37+sLzXs8Rjy8Z1ZHshJoYceodfyUwGJEsQoTyWbliFNRs2wMQNXtT7MVA==
+
+"@tailwindcss/oxide-linux-x64-gnu@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.5.tgz#5998319b120ab795929553ad41fbd874ed35fcae"
+ integrity sha512-SO+F2YEIAHa1AITwc8oPwMOWhgorPzzcbhWEb+4oLi953h45FklDmM8dPSZ7hNHpIk9p/SCZKUYn35t5fjGtHA==
+
+"@tailwindcss/oxide-linux-x64-musl@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.5.tgz#2c6158b12b88325b24ae59235b960c0aeace3d97"
+ integrity sha512-6UbBBplywkk/R+PqqioskUeXfKcBht3KU7juTi1UszJLx0KPXUo10v2Ok04iBJIaDPkIFkUOVboXms5Yxvaz+g==
+
+"@tailwindcss/oxide-wasm32-wasi@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.5.tgz#6bceca7bd7b387936b8fe292be3ab3c305da1699"
+ integrity sha512-hwALf2K9FHuiXTPqmo1KeOb83fTRNbe9r/Ixv9ZNQ/R24yw8Ge1HOWDDgTdtzntIaIUJG5dfXCf4g9AD4RiyhQ==
+ dependencies:
+ "@emnapi/core" "^1.4.3"
+ "@emnapi/runtime" "^1.4.3"
+ "@emnapi/wasi-threads" "^1.0.2"
+ "@napi-rs/wasm-runtime" "^0.2.9"
+ "@tybys/wasm-util" "^0.9.0"
+ tslib "^2.8.0"
+
+"@tailwindcss/oxide-win32-arm64-msvc@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.5.tgz#ebece1488e280f4407324842489059b1be01aaa9"
+ integrity sha512-oDKncffWzaovJbkuR7/OTNFRJQVdiw/n8HnzaCItrNQUeQgjy7oUiYpsm9HUBgpmvmDpSSbGaCa2Evzvk3eFmA==
+
+"@tailwindcss/oxide-win32-x64-msvc@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.5.tgz#0bb778f4b857eb26d5cfe07fe5e324afe2834a1d"
+ integrity sha512-WiR4dtyrFdbb+ov0LK+7XsFOsG+0xs0PKZKkt41KDn9jYpO7baE3bXiudPVkTqUEwNfiglCygQHl2jklvSBi7Q==
+
+"@tailwindcss/oxide@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide/-/oxide-4.1.5.tgz#f7c25bfa9a13548a5150c35a52b4bdbfcc13fc8e"
+ integrity sha512-1n4br1znquEvyW/QuqMKQZlBen+jxAbvyduU87RS8R3tUSvByAkcaMTkJepNIrTlYhD+U25K4iiCIxE6BGdRYA==
+ optionalDependencies:
+ "@tailwindcss/oxide-android-arm64" "4.1.5"
+ "@tailwindcss/oxide-darwin-arm64" "4.1.5"
+ "@tailwindcss/oxide-darwin-x64" "4.1.5"
+ "@tailwindcss/oxide-freebsd-x64" "4.1.5"
+ "@tailwindcss/oxide-linux-arm-gnueabihf" "4.1.5"
+ "@tailwindcss/oxide-linux-arm64-gnu" "4.1.5"
+ "@tailwindcss/oxide-linux-arm64-musl" "4.1.5"
+ "@tailwindcss/oxide-linux-x64-gnu" "4.1.5"
+ "@tailwindcss/oxide-linux-x64-musl" "4.1.5"
+ "@tailwindcss/oxide-wasm32-wasi" "4.1.5"
+ "@tailwindcss/oxide-win32-arm64-msvc" "4.1.5"
+ "@tailwindcss/oxide-win32-x64-msvc" "4.1.5"
+
+"@tailwindcss/postcss@4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/postcss/-/postcss-4.1.5.tgz#108b32f81bdd94d9f420dcc40c606fee18881ef1"
+ integrity sha512-5lAC2/pzuyfhsFgk6I58HcNy6vPK3dV/PoPxSDuOTVbDvCddYHzHiJZZInGIY0venvzzfrTEUAXJFULAfFmObg==
+ dependencies:
+ "@alloc/quick-lru" "^5.2.0"
+ "@tailwindcss/node" "4.1.5"
+ "@tailwindcss/oxide" "4.1.5"
+ postcss "^8.4.41"
+ tailwindcss "4.1.5"
+
"@tybys/wasm-util@^0.9.0":
version "0.9.0"
resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.9.0.tgz#3e75eb00604c8d6db470bf18c37b7d984a0e3355"
@@ -1049,11 +1181,23 @@ chalk@^4.0.0:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
+class-variance-authority@^0.7.1:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/class-variance-authority/-/class-variance-authority-0.7.1.tgz#4008a798a0e4553a781a57ac5177c9fb5d043787"
+ integrity sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==
+ dependencies:
+ clsx "^2.1.1"
+
client-only@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1"
integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
+clsx@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999"
+ integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==
+
color-convert@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
@@ -1241,6 +1385,14 @@ encodeurl@^2.0.0:
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58"
integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==
+enhanced-resolve@^5.18.1:
+ version "5.18.1"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz#728ab082f8b7b6836de51f1637aab5d3b9568faf"
+ integrity sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==
+ dependencies:
+ graceful-fs "^4.2.4"
+ tapable "^2.2.0"
+
es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5, es-abstract@^1.23.6, es-abstract@^1.23.9:
version "1.23.9"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.9.tgz#5b45994b7de78dada5c1bebf1379646b32b9d606"
@@ -1897,6 +2049,11 @@ gopd@^1.0.1, gopd@^1.2.0:
resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1"
integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
+graceful-fs@^4.2.4:
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+
graphemer@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
@@ -2216,6 +2373,11 @@ iterator.prototype@^1.1.4:
has-symbols "^1.1.0"
set-function-name "^2.0.2"
+jiti@^2.4.2:
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.4.2.tgz#d19b7732ebb6116b06e2038da74a55366faef560"
+ integrity sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==
+
jose@^6.0.6:
version "6.0.11"
resolved "https://registry.yarnpkg.com/jose/-/jose-6.0.11.tgz#0b7ea8b3b21a1bda5e00255a044c3a0e43270882"
@@ -2292,6 +2454,74 @@ levn@^0.4.1:
prelude-ls "^1.2.1"
type-check "~0.4.0"
+lightningcss-darwin-arm64@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz#6ceff38b01134af48e859394e1ca21e5d49faae6"
+ integrity sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==
+
+lightningcss-darwin-x64@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz#891b6f9e57682d794223c33463ca66d3af3fb038"
+ integrity sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==
+
+lightningcss-freebsd-x64@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz#8a95f9ab73b2b2b0beefe1599fafa8b058938495"
+ integrity sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==
+
+lightningcss-linux-arm-gnueabihf@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz#5c60bbf92b39d7ed51e363f7b98a7111bf5914a1"
+ integrity sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==
+
+lightningcss-linux-arm64-gnu@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz#e73d7608c4cce034c3654e5e8b53be74846224de"
+ integrity sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==
+
+lightningcss-linux-arm64-musl@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz#a95a18d5a909831c092e0a8d2de4b9ac1a8db151"
+ integrity sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==
+
+lightningcss-linux-x64-gnu@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz#551ca07e565394928642edee92acc042e546cb78"
+ integrity sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==
+
+lightningcss-linux-x64-musl@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz#2fd164554340831bce50285b57101817850dd258"
+ integrity sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==
+
+lightningcss-win32-arm64-msvc@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz#da43ea49fafc5d2de38e016f1a8539d5eed98318"
+ integrity sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==
+
+lightningcss-win32-x64-msvc@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz#ddefaa099a39b725b2f5bbdcb9fc718435cc9797"
+ integrity sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==
+
+lightningcss@1.29.2:
+ version "1.29.2"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.29.2.tgz#f5f0fd6e63292a232697e6fe709da5b47624def3"
+ integrity sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==
+ dependencies:
+ detect-libc "^2.0.3"
+ optionalDependencies:
+ lightningcss-darwin-arm64 "1.29.2"
+ lightningcss-darwin-x64 "1.29.2"
+ lightningcss-freebsd-x64 "1.29.2"
+ lightningcss-linux-arm-gnueabihf "1.29.2"
+ lightningcss-linux-arm64-gnu "1.29.2"
+ lightningcss-linux-arm64-musl "1.29.2"
+ lightningcss-linux-x64-gnu "1.29.2"
+ lightningcss-linux-x64-musl "1.29.2"
+ lightningcss-win32-arm64-msvc "1.29.2"
+ lightningcss-win32-x64-msvc "1.29.2"
+
locate-path@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
@@ -2311,6 +2541,11 @@ loose-envify@^1.4.0:
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
+lucide-react@^0.508.0:
+ version "0.508.0"
+ resolved "https://registry.yarnpkg.com/lucide-react/-/lucide-react-0.508.0.tgz#9155465e2051bb42a0ebb2d806f25a8b7125225f"
+ integrity sha512-gcP16PnexqtOFrTtv98kVsGzTfnbPekzZiQfByi2S89xfk7E/4uKE1USZqccIp58v42LqkO7MuwpCqshwSrJCg==
+
math-intrinsics@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9"
@@ -2375,7 +2610,7 @@ ms@^2.1.1, ms@^2.1.3:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-nanoid@^3.3.6:
+nanoid@^3.3.6, nanoid@^3.3.8:
version "3.3.11"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b"
integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==
@@ -2397,6 +2632,11 @@ next-auth@^5.0.0-beta.25:
dependencies:
"@auth/core" "0.39.0"
+next-themes@^0.4.6:
+ version "0.4.6"
+ resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.4.6.tgz#8d7e92d03b8fea6582892a50a928c9b23502e8b6"
+ integrity sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==
+
next@15.3.2:
version "15.3.2"
resolved "https://registry.yarnpkg.com/next/-/next-15.3.2.tgz#97510629e38a058dd154782a5c2ec9c9ab94d0d8"
@@ -2572,7 +2812,7 @@ path-to-regexp@^8.0.0:
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-8.2.0.tgz#73990cc29e57a3ff2a0d914095156df5db79e8b4"
integrity sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==
-picocolors@^1.0.0:
+picocolors@^1.0.0, picocolors@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
@@ -2606,6 +2846,15 @@ postcss@8.4.31:
picocolors "^1.0.0"
source-map-js "^1.0.2"
+postcss@8.5.3, postcss@^8.4.41:
+ version "8.5.3"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.3.tgz#1463b6f1c7fb16fe258736cba29a2de35237eafb"
+ integrity sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==
+ dependencies:
+ nanoid "^3.3.8"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
+
preact-render-to-string@6.5.11:
version "6.5.11"
resolved "https://registry.yarnpkg.com/preact-render-to-string/-/preact-render-to-string-6.5.11.tgz#467e69908a453497bb93d4d1fc35fb749a78e027"
@@ -2984,7 +3233,7 @@ simple-swizzle@^0.2.2:
dependencies:
is-arrayish "^0.3.1"
-source-map-js@^1.0.2:
+source-map-js@^1.0.2, source-map-js@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
@@ -3101,6 +3350,21 @@ supports-preserve-symlinks-flag@^1.0.0:
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
+tailwind-merge@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-3.2.0.tgz#bedcf6a67a8c982da5913afcba9c854f35abb857"
+ integrity sha512-FQT/OVqCD+7edmmJpsgCsY820RTD5AkBryuG5IUqR5YQZSdj5xlH5nLgH7YPths7WsLPSpSBNneJdM8aS8aeFA==
+
+tailwindcss@4.1.5:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-4.1.5.tgz#d35607f1a351051bd29cda7e59ab2c222ca8deb6"
+ integrity sha512-nYtSPfWGDiWgCkwQG/m+aX83XCwf62sBgg3bIlNiiOcggnS1x3uVRDAuyelBFL+vJdOPPCGElxv9DjHJjRHiVA==
+
+tapable@^2.2.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
+ integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
+
tinyglobby@^0.2.12:
version "0.2.12"
resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.12.tgz#ac941a42e0c5773bd0b5d08f32de82e74a1a61b5"
@@ -3141,6 +3405,11 @@ tslib@^2.4.0, tslib@^2.8.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
+tw-animate-css@1.2.9:
+ version "1.2.9"
+ resolved "https://registry.yarnpkg.com/tw-animate-css/-/tw-animate-css-1.2.9.tgz#b25d5fb31fd3c3ec6d91c1d1842c0d7c0fdbd999"
+ integrity sha512-9O4k1at9pMQff9EAcCEuy1UNO43JmaPQvq+0lwza9Y0BQ6LB38NiMj+qHqjoQf40355MX+gs6wtlR6H9WsSXFg==
+
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"