Add layout for agent pages with dark background
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export default function AgentLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<div className="min-h-screen bg-gradient-to-br from-[#1a1a2e] to-[#16213e]">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user