mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
20 lines
575 B
TypeScript
20 lines
575 B
TypeScript
import React from 'react';
|
|
import { Header } from '../components/header/Header';
|
|
import BackgroundRays from '../components/ui/BackgroundRays';
|
|
|
|
interface PageContainerProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export const PageContainer: React.FC<PageContainerProps> = ({ children }) => {
|
|
return (
|
|
<div className="h-screen w-full flex flex-col bg-bolt-elements-background-depth-1 dark:bg-black overflow-hidden">
|
|
<Header />
|
|
<BackgroundRays />
|
|
<div className="flex-1 w-full overflow-y-auto page-content">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|