added suspend
This commit is contained in:
18
app/suspended/layout.tsx
Normal file
18
app/suspended/layout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Website Temporarily Suspended',
|
||||
description: 'This website is temporarily unavailable due to pending maintenance dues.'
|
||||
}
|
||||
|
||||
export default function SuspendedLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<div className="min-h-screen bg-gradient-to-b from-amber-50 via-white to-slate-50">
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user