"use client"; import dynamic from "next/dynamic"; import React from "react"; // Dynamically import the heavy framer-motion component on the client only const BackgroundBlobs = dynamic(() => import("@/components/BackgroundBlobs"), { ssr: false }); export default function BackgroundBlobsClient() { return ; }