🎨 Seasonal Background Plugin
Beautiful animated backgrounds for every season and celebration
Theme Controls
Weather Effects
📦 Installation
npm install nextjs-seasonal-plugin🚀 Quick Start
import { SeasonalBackground } from 'nextjs-seasonal-plugin';
export default function Layout({ children }) {
return (
<>
<SeasonalBackground />
{children}
</>
);
}