add login/sign-up page with dark/light mode

This commit is contained in:
pouyan mehdibeik
2026-04-21 14:58:07 +03:30
parent c75b445f03
commit b30a0a6a89
21147 changed files with 4284238 additions and 2 deletions
@@ -0,0 +1,2 @@
export declare function lock(): void;
export declare function unlock(): void;
@@ -0,0 +1,2 @@
export { Overlay } from './overlay';
export { OverlayBackdrop } from './overlay-backdrop';
@@ -0,0 +1,5 @@
type OverlayBackdropProps = {
fixed?: boolean;
} & React.HTMLAttributes<HTMLDivElement>;
export declare function OverlayBackdrop({ fixed, ...props }: OverlayBackdropProps): import("react/jsx-runtime").JSX.Element;
export {};
@@ -0,0 +1,7 @@
import * as React from 'react';
export type OverlayProps = React.HTMLAttributes<HTMLDivElement> & {
fixed?: boolean;
ref?: React.Ref<HTMLDivElement>;
};
declare const Overlay: React.FC<OverlayProps>;
export { Overlay };
@@ -0,0 +1,2 @@
declare const styles: string;
export { styles };