"use client"; import { useTheme } from "next-themes"; import { ShootingStars } from "./ui/shooting-stars"; import { SparklesCore } from "./ui/sparkles"; import { StarsBackground } from "./ui/stars-background"; const WelcomeSection = () => { const { theme } = useTheme(); return (

ATOM

{/* Gradients */}
{/* Core component */}

Your one-stop shop
for gravity-free design...

{theme === "dark" && ( /* Radial Gradient to prevent sharp edges */
)}
); }; export default WelcomeSection;