feat: modernize sign-in and responsive refactor

This commit is contained in:
CycroftX
2026-02-15 13:32:32 +05:30
commit af34d85f76
131 changed files with 21675 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import { cn } from "@/lib/utils";
import React from "react";
interface GlassCardProps extends React.HTMLAttributes<HTMLDivElement> {
children: React.ReactNode;
className?: string;
hoverEffect?: boolean;
}
export const GlassCard = ({
children,
className,
hoverEffect = false,
...props
}: GlassCardProps) => {
return (
<div
className={cn(
"glass-card bg-white/40 border border-white/40 shadow-sm backdrop-blur-xl",
hoverEffect && "hover:bg-white/50 transition-all duration-300 hover:scale-[1.02]",
className
)}
{...props}
>
{children}
</div>
);
};