ok rm gitignore
This commit is contained in:
22
public/images/components/SlimLayout.jsx
Normal file
22
public/images/components/SlimLayout.jsx
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
export function SlimLayout({ children }) {
|
||||
return (
|
||||
<>
|
||||
<div className="relative flex min-h-full shrink-0 justify-center md:px-12 lg:px-0">
|
||||
<div className="relative z-10 flex flex-1 flex-col bg-white px-4 py-10 shadow-2xl sm:justify-center md:flex-none md:px-28">
|
||||
<main className="mx-auto w-full max-w-md sm:px-4 md:w-96 md:max-w-sm md:px-0">
|
||||
{children}
|
||||
</main>
|
||||
</div>
|
||||
<div className="hidden sm:contents lg:relative lg:block lg:flex-1">
|
||||
<img
|
||||
className="absolute inset-0 h-full w-full object-cover"
|
||||
src="/images/background-auth.jpg"
|
||||
alt=""
|
||||
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user