Added new theme (again), updated some homepage stuff

This commit is contained in:
Alois 2026-03-25 21:22:53 +01:00
commit 9deffbb099
17 changed files with 349 additions and 423 deletions

View file

@ -2,17 +2,12 @@ import * as React from "react";
import { cn } from "../lib/utils";
/**
* Executes Label.
* @param { className, ...props } Parameter { className, ...props }.
* @returns unknown.
*/
function Label({ className, ...props }: React.ComponentProps<"label">) {
return (
<label
data-slot="label"
className={cn(
"flex items-center gap-2 text-xs/relaxed leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
className,
)}
{...props}