beautify: footer fix email verify
This commit is contained in:
parent
80d66300cd
commit
66ea6ad002
@ -76,42 +76,44 @@ export default function EmailVerifyPage() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<PageLayout>
|
<PageLayout>
|
||||||
<div className="relative min-h-screen w-full px-4 sm:px-6 py-20">
|
<div className="relative flex flex-col flex-1 w-full px-4 sm:px-6 py-16 sm:py-24">
|
||||||
{/* Background Pattern */}
|
{/* Global full-viewport background (no inner scroll) */}
|
||||||
<svg
|
<div className="fixed inset-0 -z-10">
|
||||||
aria-hidden="true"
|
{/* Gradient base */}
|
||||||
className="absolute inset-0 -z-10 h-full w-full stroke-white/10"
|
<div className="absolute inset-0 -z-20 bg-gradient-to-b from-gray-900/95 via-gray-900/80 to-gray-900" />
|
||||||
>
|
{/* Pattern */}
|
||||||
<defs>
|
<svg
|
||||||
<pattern
|
aria-hidden="true"
|
||||||
x="50%"
|
className="absolute inset-0 -z-10 h-full w-full stroke-white/10"
|
||||||
y={-1}
|
>
|
||||||
id="affiliate-pattern"
|
<defs>
|
||||||
width={200}
|
<pattern
|
||||||
height={200}
|
id="email-verify-pattern"
|
||||||
patternUnits="userSpaceOnUse"
|
x="50%"
|
||||||
>
|
y={-1}
|
||||||
<path d="M.5 200V.5H200" fill="none" stroke="rgba(255,255,255,0.05)" />
|
width={200}
|
||||||
</pattern>
|
height={200}
|
||||||
</defs>
|
patternUnits="userSpaceOnUse"
|
||||||
<rect fill="url(#affiliate-pattern)" width="100%" height="100%" strokeWidth={0} />
|
>
|
||||||
</svg>
|
<path d="M.5 200V.5H200" fill="none" stroke="rgba(255,255,255,0.05)" />
|
||||||
{/* Colored Blur Effect */}
|
</pattern>
|
||||||
<div
|
</defs>
|
||||||
aria-hidden="true"
|
<rect fill="url(#email-verify-pattern)" width="100%" height="100%" strokeWidth={0} />
|
||||||
className="absolute top-0 right-0 left-1/2 -z-10 -ml-24 transform-gpu overflow-hidden blur-3xl lg:ml-24 xl:ml-48"
|
</svg>
|
||||||
>
|
{/* Colored blur shape */}
|
||||||
<div
|
<div
|
||||||
style={{
|
aria-hidden="true"
|
||||||
clipPath:
|
className="absolute top-0 right-0 left-1/2 -ml-24 transform-gpu overflow-hidden blur-3xl lg:ml-24 xl:ml-48"
|
||||||
'polygon(63.1% 29.5%, 100% 17.1%, 76.6% 3%, 48.4% 0%, 44.6% 4.7%, 54.5% 25.3%, 59.8% 49%, 55.2% 57.8%, 44.4% 57.2%, 27.8% 47.9%, 35.1% 81.5%, 0% 97.7%, 39.2% 100%, 35.2% 81.4%, 97.2% 52.8%, 63.1% 29.5%)'
|
>
|
||||||
}}
|
<div
|
||||||
className="aspect-[801/1036] w-[50.0625rem] bg-gradient-to-tr from-[#ff80b5] to-[#9089fc] opacity-50"
|
style={{
|
||||||
/>
|
clipPath:
|
||||||
|
'polygon(63.1% 29.5%, 100% 17.1%, 76.6% 3%, 48.4% 0%, 44.6% 4.7%, 54.5% 25.3%, 59.8% 49%, 55.2% 57.8%, 44.4% 57.2%, 27.8% 47.9%, 35.1% 81.5%, 0% 97.7%, 39.2% 100%, 35.2% 81.4%, 97.2% 52.8%, 63.1% 29.5%)'
|
||||||
|
}}
|
||||||
|
className="aspect-[801/1036] w-[50.0625rem] bg-gradient-to-tr from-[#ff80b5] to-[#9089fc] opacity-50"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* Gradient base */}
|
|
||||||
<div className="absolute inset-0 -z-20 bg-gradient-to-b from-gray-900/95 via-gray-900/80 to-gray-900" />
|
|
||||||
|
|
||||||
<div className="max-w-xl mx-auto">
|
<div className="max-w-xl mx-auto">
|
||||||
<div className="text-center mb-10">
|
<div className="text-center mb-10">
|
||||||
<h1 className="text-3xl sm:text-4xl font-semibold tracking-tight text-white">
|
<h1 className="text-3xl sm:text-4xl font-semibold tracking-tight text-white">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user