feat: add OfflineBanner component to LayoutContent for offline notifications and update styles in OfflineBanner

This commit is contained in:
Usman Baig
2026-02-04 11:00:21 +01:00
parent 73dac1b170
commit 2a0380189d
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
'use client'
import { OfflineBanner } from '@/components/OfflineBanner'
import { Header, Footer } from '@ciphera-net/ui'
import { useAuth } from '@/lib/auth/context'
import Link from 'next/link'
@@ -53,6 +54,7 @@ export default function LayoutContent({ children }: { children: React.ReactNode
showSecurity={false}
showPricing={true}
/>
<OfflineBanner />
<main className="flex-1 pt-24 pb-8">
{children}
</main>