website refactor
This commit is contained in:
19
apps/website/ui/DashboardLayoutWrapper.tsx
Normal file
19
apps/website/ui/DashboardLayoutWrapper.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import React, { ReactNode } from 'react';
|
||||
|
||||
interface DashboardLayoutWrapperProps {
|
||||
children: ReactNode;
|
||||
}
|
||||
|
||||
/**
|
||||
* DashboardLayoutWrapper
|
||||
*
|
||||
* Full-screen layout wrapper for dashboard pages.
|
||||
* Provides the base container with background styling.
|
||||
*/
|
||||
export function DashboardLayoutWrapper({ children }: DashboardLayoutWrapperProps) {
|
||||
return (
|
||||
<div className="min-h-screen bg-deep-graphite">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user