Phase 2: Enhance footer with conditional comprehensive layout

This commit is contained in:
Usman Baig
2026-02-05 16:41:31 +01:00
parent 9ec441c932
commit e9476219b1
2 changed files with 213 additions and 18 deletions

View File

@@ -1,7 +1,8 @@
'use client'
import { OfflineBanner } from '@/components/OfflineBanner'
import { Header, Footer, GridIcon } from '@ciphera-net/ui'
import { Footer } from '@/components/Footer'
import { Header, GridIcon } from '@ciphera-net/ui'
import { useAuth } from '@/lib/auth/context'
import { useOnlineStatus } from '@/lib/hooks/useOnlineStatus'
import Link from 'next/link'
@@ -82,8 +83,7 @@ export default function LayoutContent({ children }: { children: React.ReactNode
<Footer
LinkComponent={Link}
appName="Pulse"
showPricing={true}
showSecurity={false}
isAuthenticated={!!auth.user}
/>
</>
)