Daily loot streak UI Component With an improve its structure, clarity, and robustness
import { NeonParticleTunnel, DailyLootStreak, } from "@/components/ui/daily-streak"; const settings = { showTunnel: true, }; export default function Demo(props: Partial<typeof settings>) { const s = { ...settings, ...props }; return ( <div className="relative h-screen w-screen overflow-hidden bg-black"> {s.showTunnel && <NeonParticleTunnel />} <DailyLootStreak /> </div> ); }