diff --git a/app/sites/[id]/SiteLayoutShell.tsx b/app/sites/[id]/SiteLayoutShell.tsx index e629e8d..1bc2a07 100644 --- a/app/sites/[id]/SiteLayoutShell.tsx +++ b/app/sites/[id]/SiteLayoutShell.tsx @@ -1,7 +1,5 @@ 'use client' -import { usePathname } from 'next/navigation' -import { AnimatePresence, motion } from 'framer-motion' import SiteNav from '@/components/dashboard/SiteNav' export default function SiteLayoutShell({ @@ -11,24 +9,12 @@ export default function SiteLayoutShell({ siteId: string children: React.ReactNode }) { - const pathname = usePathname() - return ( <>
- - - {children} - - + {children} ) }