����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import { PageControl } from '@launch/components/PageControl';
import { Logo } from '@launch/svg';
export const PageLayout = ({ children, includeNav = true }) => {
return (
<div className="flex h-[calc(100dvh)] flex-col">
<div className="w-full flex-none bg-banner-main px-6 py-5 md:px-12 md:py-6">
{window.extSharedData?.partnerLogo ? (
<div className="flex h-10 max-w-52 items-center overflow-hidden md:max-w-72">
<img
className="max-h-full max-w-full object-contain"
src={window.extSharedData.partnerLogo}
alt={window.extSharedData?.partnerName ?? ''}
/>
</div>
) : (
<Logo className="h-8 w-auto text-banner-text" />
)}
</div>
{children}
{includeNav && <PageControl />}
</div>
);
};
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| PageLayout.jsx | File | 764 B | 0644 |
|