Initial commit

This commit is contained in:
DK
2026-02-09 16:35:11 +00:00
commit c8f33c93f3
656 changed files with 77366 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import CircleGradientBackground from "@/components/background/CircleGradientBackground";
import AuroraBackground from "@/components/background/AuroraBackground";
import FloatingGradientBackground from "@/components/background/floatingGradientBackground/FloatingGradientBackground";
import type { BackgroundType } from "./types";
interface BackgroundComponentProps {
className?: string;
}
export const backgroundComponents: Record<BackgroundType, React.ComponentType<BackgroundComponentProps> | null> = {
none: null,
circleGradient: CircleGradientBackground,
aurora: AuroraBackground,
floatingGradient: FloatingGradientBackground,
};