"use client"; import React from "react"; import { motion } from "framer-motion"; import { cn } from "@/lib/utils"; export default function LampDemo() { return ( Build lamps
the right way
); } export const LampContainer = ({ children, className, }: { children: React.ReactNode; className?: string; }) => { return (
{children}
); };