"use client"; import React from "react"; import { motion } from "framer-motion"; import { cn } from "@/lib/utils"; import { SparklesCore } from "./sparkles"; export function LampComponent() { return ( Plans That
Fit You Best
); } export const LampContainer = ({ children, className, }: { children: React.ReactNode; className?: string; }) => { return (
{children}
); };