'use client' import { motion } from 'framer-motion' import { usePathname } from 'next/navigation' import { Navbar } from '@/components/navbar' import { BackgroundProvider } from '@/contexts/background-context' export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { const pathname = usePathname() return ( <>
{children}
) }