-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dinxsh:master' into brackets-backend
- Loading branch information
Showing
7 changed files
with
344 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Image from "next/image"; | ||
|
||
export default function AuthLayout({ children }) { | ||
return ( | ||
<div className="flex border h-[90vh] -mt-8 w-[98%] mx-auto rounded-2xl bg-zinc-400/10 border-zinc-200/20 backdrop-blur-lg backdrop-saturate-200"> | ||
<div className="w-1/2 relative p-2 flex items-center justify-center max-md:hidden"> | ||
<Image | ||
src={`/assets/grad1.svg`} | ||
alt="" | ||
width={1024} | ||
height={1024} | ||
className="h-[97%] w-[98%] -z-10 object-cover object-left-bottom opacity-95 rounded-2xl inset-1/2 transform -translate-x-1/2 -translate-y-1/2 absolute" | ||
/> | ||
<h2 className="text-7xl m-5 font-bold pointer-events-none whitespace-pre-wrap bg-gradient-to-b from-white/90 via-white/70 to-zinc-800 bg-clip-text leading-none text-transparent max-sm:text-3xl max-sm:text-center p-2 text-center"> | ||
Sanity Gaming | ||
</h2> | ||
</div> | ||
<div className="w-1/2 max-md:w-full relative p-2 flex items-center justify-center">{children}</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.