website refactor
This commit is contained in:
9
apps/website/ui/ProfileLayoutShell.tsx
Normal file
9
apps/website/ui/ProfileLayoutShell.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { ReactNode } from 'react';
|
||||
|
||||
interface ProfileLayoutShellProps {
|
||||
children: ReactNode;
|
||||
}
|
||||
|
||||
export function ProfileLayoutShell({ children }: ProfileLayoutShellProps) {
|
||||
return <div className="min-h-screen bg-deep-graphite">{children}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user