Tilt Card

3D perspective tilt card with spring physics and glare layer on mouse move.

cards intermediate framer-motion

Prompt-first

Every component ships with a production-ready AI prompt.

Zero setup

Copy, paste, done. No configuration required.

Any AI tool

Works with v0, Lovable, Cursor, and Bolt.

"use client";

import React from "react";
import { cn } from "@/lib/utils";

interface ComponentProps {
  children: React.ReactNode;
  className?: string;
  variant?: "default" | "primary";
  // ...
}

export function Component({
  children,
  className,
  variant = "default",
  ...props
}: ComponentProps) {
  // Full implementation
  // available with subscription
  return (
    <div className={cn("...", className)}>
      {children}
    </div>
  );
}

Premium Code

Get the complete, production-ready source code for this component.

Sign up free